Fix warnings related to undefined defines and implicit casts
This commit is contained in:
@@ -12,7 +12,7 @@ typedef float bh_float32_t;
|
||||
typedef double bh_float64_t;
|
||||
|
||||
/* Platform specific type definition */
|
||||
#if __STDC_VERSION__ >= 199901L || defined(__GNUC__)
|
||||
#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__)
|
||||
#include <stdint.h>
|
||||
|
||||
typedef int32_t bh_int32_t;
|
||||
|
||||
Reference in New Issue
Block a user