X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c9d59ee7e0cbe4acae6153adafb5ddce9a4e65dd..2c01d33555e3125057f4575ca7d0d2aba93f421f:/include/wx/build.h?ds=sidebyside diff --git a/include/wx/build.h b/include/wx/build.h index 4cc0dca46d..6e0a6dc8ce 100644 --- a/include/wx/build.h +++ b/include/wx/build.h @@ -112,13 +112,14 @@ // Use this macro to check build options. Adding it to a file in DLL will // ensure that the DLL checks build options in same way IMPLEMENT_APP() does. #define WX_CHECK_BUILD_OPTIONS(libName) \ - static bool wxCheckBuildOptions() \ + static struct wxBuildOptionsChecker \ { \ - wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \ - libName); \ - return true; \ - }; \ - static bool gs_buildOptionsCheck = wxCheckBuildOptions(); + wxBuildOptionsChecker() \ + { \ + wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \ + libName); \ + } \ + } gs_buildOptionsCheck; #if WXWIN_COMPATIBILITY_2_4