From: Mattia Barbon Date: Mon, 11 Aug 2003 16:48:07 +0000 (+0000) Subject: Expose GetCount when wxUSE_STL=1. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/72eef31646b3472303a4da5a250de13b338e0dc3?ds=inline Expose GetCount when wxUSE_STL=1. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22774 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/hash.h b/include/wx/hash.h index 9415394e1a..0b3470f6d8 100644 --- a/include/wx/hash.h +++ b/include/wx/hash.h @@ -428,6 +428,8 @@ public: } void Clear() { wxHashTableBase::Clear(); } + + size_t GetCount() const { return wxHashTableBase::GetCount(); } private: compatibility_iterator m_iter; };