Fix wxHash{Set,Map} compilation with g++ 4.7 in C++11 mode.
Fully qualify the hasher and comparator classes used with WX_DECLARE_HASH_{SET,MAP} macros as they're used as base classes by the standard library implementation in g++ 4.7 and using them without the scope operator results in compilation errors because they're interpreted as being (inaccessible) base classes and not the global ones. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -29,7 +29,7 @@ class wxHtmlTextPieces;
|
||||
class wxHtmlParserState;
|
||||
|
||||
WX_DECLARE_HASH_SET_WITH_DECL_PTR(wxHtmlTagHandler*,
|
||||
wxPointerHash, wxPointerEqual,
|
||||
::wxPointerHash, ::wxPointerEqual,
|
||||
wxHtmlTagHandlersSet,
|
||||
class WXDLLIMPEXP_HTML);
|
||||
WX_DECLARE_STRING_HASH_MAP_WITH_DECL(wxHtmlTagHandler*,
|
||||
|
Reference in New Issue
Block a user