diff --git a/src/clparse.cpp b/src/clparse.cpp index af8af232a2a..7e5ad32f0fa 100644 --- a/src/clparse.cpp +++ b/src/clparse.cpp @@ -501,10 +501,6 @@ bool ParseCommandLineDebugFlags(int argc, const char * const *argv) poptContext poptCon = poptGetContext(nullptr, argc, argv, debugOptionsTable, 0); int iOption; -#if defined(WZ_OS_MAC) && defined(DEBUG) - debug_enable_switch("all"); -#endif /* WZ_OS_MAC && DEBUG */ - /* loop through command line */ while ((iOption = poptGetNextOpt(poptCon)) > 0 || iOption == POPT_ERROR_BADOPT) { @@ -598,10 +594,6 @@ ParseCLIEarlyResult ParseCommandLineEarly(int argc, const char * const *argv) poptContext poptCon = poptGetContext(nullptr, argc, argv, getOptionsTable(), 0); int iOption; -#if defined(WZ_OS_MAC) && defined(DEBUG) - debug_enable_switch("all"); -#endif /* WZ_OS_MAC && DEBUG */ - /* loop through command line */ while ((iOption = poptGetNextOpt(poptCon)) > 0 || iOption == POPT_ERROR_BADOPT) {