Browse Source

dtoolbase: fix x86 compilation error on Android

rdb 6 years ago
parent
commit
403e56817a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dtool/src/dtoolbase/atomicAdjustI386Impl.h

+ 1 - 1
dtool/src/dtoolbase/atomicAdjustI386Impl.h

@@ -17,7 +17,7 @@
 #include "dtoolbase.h"
 #include "dtoolbase.h"
 #include "selectThreadImpl.h"
 #include "selectThreadImpl.h"
 
 
-#if (defined(__i386__) || defined(_M_IX86)) && !defined(__APPLE__)
+#if (defined(__i386__) || defined(_M_IX86)) && !defined(__APPLE__) && !defined(__ANDROID__)
 
 
 #include "numeric_types.h"
 #include "numeric_types.h"