]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hashmap.h
No changes, just simplify the code using wx2stc() a little.
[wxWidgets.git] / include / wx / hashmap.h
index f1b72a80f81192293848f578ec884d833b311415..a2cc550e0f446df4aff20426720d91583a9cda79 100644 (file)
@@ -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; \
     } \
 }