| 303 | /// Verify following characters of an option |
| 304 | template <typename T> |
| 305 | bool valid_later_char(T c) { |
| 306 | return valid_first_char(c) || c == '.' || c == '-'; |
| 307 | } |
| 308 | |
| 309 | /// Verify an option name |
| 310 | inline bool valid_name_string(const std::string &str) { |
no test coverage detected