Browse Source

Fix build issue on OSX.

pull/13/head
Jeff Young 7 years ago
parent
commit
4061f1cce3
  1. 6
      qa/pcb_parse_input/main.cpp

6
qa/pcb_parse_input/main.cpp

@ -77,12 +77,12 @@ bool parse(std::istream& aStream, bool aVerbose )
static const wxCmdLineEntryDesc g_cmdLineDesc [] =
{
{ wxCMD_LINE_SWITCH, "h", "help",
_( "displays help on the command line parameters" ),
_( "displays help on the command line parameters" ).wx_str(),
wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
{ wxCMD_LINE_SWITCH, "v", "verbose",
_( "print parsing information") },
_( "print parsing information").wx_str() },
{ wxCMD_LINE_PARAM, nullptr, nullptr,
_( "input file" ),
_( "input file" ).wx_str(),
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
{ wxCMD_LINE_NONE }
};

Loading…
Cancel
Save