Skip to content

Commit

Permalink
clparse.cpp: Remove old macOS-only code
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Jul 2, 2024
1 parent f3187c7 commit 7ada2cc
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/clparse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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)
{
Expand Down

0 comments on commit 7ada2cc

Please sign in to comment.