more extra semicolons removed (patch 1303724)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35673 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-09-25 11:16:57 +00:00
parent c7fe80e285
commit 259c43f679
20 changed files with 31 additions and 31 deletions

View File

@@ -197,7 +197,7 @@ void name::reset(T * p){ \
// ----------------------------------------------------------------------------
#define wxDEFINE_TIED_SCOPED_PTR_TYPE(T) \
wxDEFINE_SCOPED_PTR_TYPE(T); \
wxDEFINE_SCOPED_PTR_TYPE(T) \
class T ## TiedPtr : public T ## Ptr \
{ \
public: \
@@ -216,7 +216,7 @@ void name::reset(T * p){ \
private: \
T **m_pp; \
T *m_pOld; \
}
};
#endif // __WX_SCOPED_POINTER__