* NOTE: * vector v should have strings UPPERCASE when case insensitive mode was enabled */
| 39 | * vector v should have strings UPPERCASE when case insensitive mode was enabled |
| 40 | */ |
| 41 | KeyValueParserPrivate::KeyValueParserPrivate(KeyValueParser& p_instance, const std::vector<std::string>& v, |
| 42 | const std::string& sep, bool case_sensitive, bool validate_keys): |
| 43 | _keys(v), _separator(sep), _p_instance(p_instance), _case_sensitive(case_sensitive), _validate_keys(validate_keys) |
| 44 | { |
| 45 | (void)_p_instance; |
| 46 | } |
| 47 | |
| 48 | KeyValueParserPrivate::KeyValueParserPrivate(KeyValueParser& p_instance, const std::vector<std::string>& v, |
| 49 | bool case_sensitive, bool validate_keys): |
nothing calls this directly
no outgoing calls
no test coverage detected