To make dockcross-x86 happy

This commit is contained in:
lazymio 2021-10-06 11:53:34 +02:00
parent 3cbad9556a
commit 8ab7e0626d
No known key found for this signature in database
GPG Key ID: DFF27E34A47CB873
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ struct uc_struct;
* All supported versions of Glib's g_assert() satisfy this requirement.
*/
// Unfortunately, NDK also has this problem.
#if defined(__MINGW32__ ) || defined(__ANDROID__)
#if defined(__MINGW32__ ) || defined(__ANDROID__) || defined(__i386__)
#undef assert
#define assert(x) g_assert(x)
#endif