]> git.saurik.com Git - wxWidgets.git/commit
Add _PTR WX_DECLARE_HASH_SET variants to fix warnings about operator->().
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 27 Oct 2011 22:26:10 +0000 (22:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 27 Oct 2011 22:26:10 +0000 (22:26 +0000)
commite4c8592e9c995805a8518bf13e990e60ad9f0ed0
treebd83262f405ce8c9356bf86f85a85e77a3215589
parentc155b9b519b54aa5410930bcdc5c6478ebda1251
Add _PTR WX_DECLARE_HASH_SET variants to fix warnings about operator->().

Macros from WX_DECLARE_HASH_SET family could declare an operator->() which
could never be called because it returned a pointer to a non-object (e.g. a
pointer or a primitive type).

Fix this in the same way as for WX_DECLARE_ARRAY macros by adding (badly but
consistently) named _PTR variants of the macros to allow defining the versions
without operator->().

This fixes tons of warnings when building wx with Sun CC.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69568 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
include/wx/hashmap.h
include/wx/hashset.h
include/wx/html/htmlpars.h
src/generic/grid.cpp
src/xrc/xmlres.cpp