diff options
Diffstat (limited to 'php/src/IcePHP/Config.h')
-rw-r--r-- | php/src/IcePHP/Config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/php/src/IcePHP/Config.h b/php/src/IcePHP/Config.h index fa8130a1df0..94fd0a59b25 100644 --- a/php/src/IcePHP/Config.h +++ b/php/src/IcePHP/Config.h @@ -42,6 +42,10 @@ extern "C" # pragma GCC diagnostic warning "-Wsign-compare" #endif +#ifdef _WIN64 +# pragma warning( disable : 4267) // suppress size_t/uint conversion warnings in zend macros for Windows x64 builds +#endif + #if defined(__GNUC__) # pragma GCC diagnostic warning "-Wnarrowing" #endif |