Remove trailing semicolon from wxDFB_DECLARE_INTERFACE()

This avoids -Wpedantic warnings when a semicolon is used after it.
This commit is contained in:
Vadim Zeitlin 2020-08-30 21:09:36 +02:00
parent dca6f310bb
commit 9206a9de00

View File

@ -23,7 +23,7 @@
*/
#define wxDFB_DECLARE_INTERFACE(name) \
class wx##name; \
typedef wxDfbPtr<wx##name> wx##name##Ptr;
typedef wxDfbPtr<wx##name> wx##name##Ptr
//-----------------------------------------------------------------------------