Remove extraneous semicolons after wxDECL_FOR_STRICT_MINGW32().

This macro shouldn't be followed by a semicolon because it can be empty, so
remove the extra semicolons to avoid -Wpedantic g++ warnings about it.
This commit is contained in:
Vadim Zeitlin
2015-07-01 00:39:05 +02:00
parent 711827a6ee
commit c6c19dc580
5 changed files with 9 additions and 6 deletions

View File

@@ -72,7 +72,7 @@
#define wxFinite(x) isfinite(x)
#endif
#elif defined(wxNEEDS_STRICT_ANSI_WORKAROUNDS)
wxDECL_FOR_STRICT_MINGW32(int, _finite, (double));
wxDECL_FOR_STRICT_MINGW32(int, _finite, (double))
#define wxFinite(x) _finite(x)
#elif ( defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \