| 4503 | struct Token { |
| 4504 | enum Type { Positional, ShortOpt, LongOpt }; |
| 4505 | Token( Type _type, std::string const& _data ) : type( _type ), data( _data ) {} |
| 4506 | Type type; |
| 4507 | std::string data; |
| 4508 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected