X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1688485fd0c206f8e69d464cf84f40bc9ff4a7d..4dddb8a2dde675b85bbe28399b921648a22e6be1:/include/wx/hashmap.h 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;