explicit this-> is required by C++ standard, not g++, in WinStruct template

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-06-09 22:01:54 +00:00
parent 1a4088e1c7
commit 329ac7daeb

View File

@ -325,7 +325,8 @@ struct WinStruct : public T
WinStruct()
{
::ZeroMemory(this, sizeof(T));
// NB: gcc-3.4 would give syntax error without "this->"
// explicit qualification is required here for this to be valid C++
this->cbSize = sizeof(T);
}
};