Use semicolon after wxIMPLEMENT_*_CLASS* in wx's own implementations
wxIMPLEMENT_DYNAMIC/ABSTRACT_CLASS* is documented to be used with a semicolon, though it is not mandatory. Not touching headers yet, to avoid -pedantic warnings in user code. See https://github.com/wxWidgets/wxWidgets/pull/2584
This commit is contained in:
committed by
Vadim Zeitlin
parent
5cea9f4649
commit
ed92c86785
@@ -17,9 +17,9 @@
|
||||
|
||||
#include "wx/ipcbase.h"
|
||||
|
||||
wxIMPLEMENT_ABSTRACT_CLASS(wxServerBase, wxObject)
|
||||
wxIMPLEMENT_ABSTRACT_CLASS(wxClientBase, wxObject)
|
||||
wxIMPLEMENT_ABSTRACT_CLASS(wxConnectionBase, wxObject)
|
||||
wxIMPLEMENT_ABSTRACT_CLASS(wxServerBase, wxObject);
|
||||
wxIMPLEMENT_ABSTRACT_CLASS(wxClientBase, wxObject);
|
||||
wxIMPLEMENT_ABSTRACT_CLASS(wxConnectionBase, wxObject);
|
||||
|
||||
wxConnectionBase::wxConnectionBase(void *buffer, size_t bytes)
|
||||
: m_buffer((char *)buffer),
|
||||
|
||||
Reference in New Issue
Block a user