| 3530 | struct Token { |
| 3531 | enum Type { Positional, ShortOpt, LongOpt }; |
| 3532 | Token( Type _type, std::string const& _data ) : type( _type ), data( _data ) {} |
| 3533 | Type type; |
| 3534 | std::string data; |
| 3535 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected