From 486f0e76c270719c66e6f44b81a3b1fa0a55e3d5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 11 Jul 2003 19:01:55 +0000 Subject: [PATCH] removed a :: from WX_CLEAR_HASHMAP git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21895 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/hashmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/hashmap.h b/include/wx/hashmap.h index 87a911d53a..14d8684f54 100644 --- a/include/wx/hashmap.h +++ b/include/wx/hashmap.h @@ -579,7 +579,7 @@ public: \ // count on it)! #define WX_CLEAR_HASH_MAP(type, hashmap) \ { \ - type##::iterator it, en; \ + type::iterator it, en; \ for( it = (hashmap).begin(), en = (hashmap).end(); it != en; ++it ) \ delete it->second; \ (hashmap).clear(); \ -- 2.45.2