]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
Whole lot of stuff for new wxFileDialog
[wxWidgets.git] / src / common / intl.cpp
index 020bd9be8b7037d07ae2af5b848bd316e2bb520a..a63fa77a056fb6fd13032f145947f17a4b0cbd39 100644 (file)
@@ -76,7 +76,11 @@ typedef unsigned char size_t8;
         public:
             IntSizeChecker()
             {
-                wxASSERT_MSG( sizeof(int) == 4,
+                // Asserting a sizeof directly causes some compilers to
+                // issue a "using constant in a conditional expression" warning
+                size_t                   intsize = sizeof(int);
+
+                wxASSERT_MSG( intsize == 4,
                               "size_t32 is incorrectly defined!" );
             }
         } intsizechecker;