File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,6 @@ namespace boost { namespace program_options {
49
49
for (i = 0 ; i < options.options .size (); ++i) {
50
50
51
51
option_name = options.options [i].string_key ;
52
- original_token = options.options [i].original_tokens .size () ?
53
- options.options [i].original_tokens [0 ] :
54
- option_name;
55
52
// Skip positional options without name
56
53
if (option_name.empty ())
57
54
continue ;
@@ -68,7 +65,7 @@ namespace boost { namespace program_options {
68
65
if (xm.m_final .count (option_name))
69
66
continue ;
70
67
71
- string original_token = options.options [i].original_tokens .size () ?
68
+ original_token = options.options [i].original_tokens .size () ?
72
69
options.options [i].original_tokens [0 ] : " " ;
73
70
const option_description& d = desc.find (option_name, false ,
74
71
false , false );
You can’t perform that action at this time.
0 commit comments