X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1688485fd0c206f8e69d464cf84f40bc9ff4a7d..1e151594721201f2048aa295dcf35acd28f012b9:/include/wx/hashmap.h?ds=sidebyside diff --git a/include/wx/hashmap.h b/include/wx/hashmap.h index 8cc00b57b9..89601b6ec3 100644 --- a/include/wx/hashmap.h +++ b/include/wx/hashmap.h @@ -433,8 +433,8 @@ public: \ }; // grow/shrink predicates -inline bool never_grow( size_t, size_t ) { return FALSE; } -inline bool never_shrink( size_t, size_t ) { return FALSE; } +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;