| 838 | struct string_arg |
| 839 | { |
| 840 | string_arg(const char* arg): arg_value(arg) {} |
| 841 | string_arg(std::string&& arg): arg_value(std::move(arg)) {} |
| 842 | string_arg(const std::string& arg): arg_value(arg) {} |
| 843 | std::string arg_value; |
nothing calls this directly
no outgoing calls
no test coverage detected