From 005b5298e40a7665a07067ab2a56ae8be4102dfb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 1 Jul 2003 12:39:08 +0000 Subject: [PATCH] suppress warning about unused variable git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21551 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/init.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/common/init.cpp b/src/common/init.cpp index 14d6056929..58e2b591a2 100644 --- a/src/common/init.cpp +++ b/src/common/init.cpp @@ -111,6 +111,15 @@ public: ~wxCleanupOnExit() { wxEntryCleanup(); } }; +// ---------------------------------------------------------------------------- +// private functions +// ---------------------------------------------------------------------------- + +// suppress warnings about unused variables +static inline void Use(void *) { } + +#define WX_SUPPRESS_UNUSED_WARN(x) Use(&x) + // ---------------------------------------------------------------------------- // initialization data // ---------------------------------------------------------------------------- @@ -380,6 +389,8 @@ int wxEntryReal(int& argc, wxChar **argv) // below returns or throws wxCleanupOnExit cleanupOnExit; + WX_SUPPRESS_UNUSED_WARN(cleanupOnExit); + // app initialization if ( !wxTheApp->OnInit() ) { -- 2.45.2