]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hashmap.h
Check axis number in the received joystick messages.
[wxWidgets.git] / include / wx / hashmap.h
index f1b72a80f81192293848f578ec884d833b311415..9a25f8e183a2b1199ccf0afcd947cfcbc8fa22b9 100644 (file)
@@ -467,7 +467,7 @@ inline bool never_grow( size_t, size_t ) { return false; }
 inline bool never_shrink( size_t, size_t ) { return false; }
 inline bool grow_lf70( size_t buckets, size_t items )
 {
-    return float(items)/float(buckets) >= 0.85;
+    return float(items)/float(buckets) >= 0.85f;
 }
 
 #endif // various hash map implementations
@@ -689,8 +689,7 @@ public: \
     /* count() == 0 | 1 */ \
     size_type count( const const_key_type& key ) \
     { \
-        /* explicit cast needed to suppress CodeWarrior warnings */ \
-        return (size_type)(GetNode( key ) ? 1 : 0); \
+        return GetNode( key ) ? 1u : 0u; \
     } \
 }