From 8fc8f745ece1e6741db3a64bc54167f0f8357fc9 Mon Sep 17 00:00:00 2001 From: Naveed Aman Pasha Date: Wed, 8 May 2019 12:08:03 +0500 Subject: [PATCH] added OS __ANDROID__ to tidyplatform.h --- include/tidyplatform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tidyplatform.h b/include/tidyplatform.h index ca169dc..89b6a77 100644 --- a/include/tidyplatform.h +++ b/include/tidyplatform.h @@ -569,7 +569,7 @@ extern "C" { typedef unsigned int uint; #endif -#if defined(HPUX_OS) || defined(CYGWIN_OS) || defined(MAC_OS) || defined(BSD_BASED_OS) || defined(_WIN32) +#if defined(HPUX_OS) || defined(CYGWIN_OS) || defined(MAC_OS) || defined(BSD_BASED_OS) || defined(_WIN32) || defined(__ANDROID__) # undef ulong typedef unsigned long ulong; #endif