File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ bool ms_cl_cmdlinet::parse(const std::vector<std::string> &arguments)
57
57
{
58
58
for (std::size_t i = 0 ; i < arguments.size (); i++)
59
59
{
60
+ std::cerr << " ARG " << i << " : " << arguments[i] << std::endl;
60
61
// is it a non-cl option?
61
62
if (std::string (arguments[i], 0 , 2 ) == " --" )
62
63
{
@@ -427,6 +428,8 @@ void ms_cl_cmdlinet::process_cl_option(const std::string &s)
427
428
return ;
428
429
}
429
430
431
+ std::cerr << " cl_option: " << s << std::endl;
432
+
430
433
for (std::size_t j=0 ; ms_cl_flags[j]!=nullptr ; j++)
431
434
{
432
435
if (std::string (s, 1 , std::string::npos)==ms_cl_flags[j])
@@ -455,6 +458,7 @@ void ms_cl_cmdlinet::process_cl_option(const std::string &s)
455
458
optnr=options.size ()-1 ;
456
459
}
457
460
461
+ std::cerr << " Found " << *optnr << std::endl;
458
462
options[*optnr].isset =true ;
459
463
return ;
460
464
}
You can’t perform that action at this time.
0 commit comments