fix warning about unused rc variable in release builds

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-05-18 16:01:43 +00:00
parent 68d2c3bedc
commit e2985da831

View File

@@ -20,8 +20,10 @@ class cls : public wxVectorBase\
public:\
void push(const obj& o)\
{\
bool rc = Alloc(size() + 1);\
wxASSERT(rc);\
if ( !Alloc(size() + 1) )\
{\
wxFAIL_MSG(_T("failed to extend stack"));\
}\
Append(new obj(o));\
};\
\