]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hashmap.h
suppress warning about not being able to generate copy ctor/operator=()
[wxWidgets.git] / include / wx / hashmap.h
index 14d8684f5446e12ef2815dc6cffba4da6cf81fe2..896cd12db0b54f63edf1572bd100532c381101c4 100644 (file)
@@ -74,11 +74,7 @@ protected:
 
     static void** AllocTable( size_t sz )
     {
-#ifdef __WXWINCE__
-        return (void **)malloc(sz * sizeof(void*));
-#else
         return (void **)calloc(sz, sizeof(void*));
-#endif
     }
 };