| 37 | const char** value; |
| 38 | |
| 39 | Option_def () : is_set(0), value(0) { } |
| 40 | Option_def (const std::string& arg_name, bool* arg_is_set) |
| 41 | : name(arg_name), is_set(arg_is_set), value(0) { } |
| 42 | Option_def (const std::string& arg_name, const char** arg_value) |
nothing calls this directly
no outgoing calls
no test coverage detected