]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/extended.c
Removing most of level 4 warnings, particulary in 16 bits mode
[wxWidgets.git] / src / common / extended.c
index 42225997a2e61a73bc91bbb500a3e9fae8ddefe0..6de1ae2aa8487b62d859e84f7e3ce6038257ffa2 100644 (file)
@@ -1,3 +1,4 @@
+#   pragma warning(disable:4001)    /* non standard extension used: single line comment */
 #include "wx/setup.h"
 #include <math.h>
 
@@ -82,9 +83,10 @@ void ConvertToIeeeExtended(double num, unsigned char *bytes)
                }
        }
 
-    /* disable the warning about 'possible loss of data' */
+    /* disable the warning about 'possible loss of data' & 'conversion between diff types' */
     #ifdef _MSC_VER
         #pragma warning(disable: 4244)
+        #pragma warning(disable: 4135)
     #endif /* Visual C++ */
 
        bytes[0] = (expon >> 8) & 0xff;
@@ -100,6 +102,7 @@ void ConvertToIeeeExtended(double num, unsigned char *bytes)
 
     #ifdef _MSC_VER
         #pragma warning(default: 4244)
+        #pragma warning(default: 4135)
     #endif /* Visual C++ */
 }