Requires "--" to be removed from string
| 4158 | |
| 4159 | /// Requires "--" to be removed from string |
| 4160 | bool check_fname(std::string name) const { |
| 4161 | if (fnames_.empty()) { |
| 4162 | return false; |
| 4163 | } |
| 4164 | return (detail::find_member(std::move(name), fnames_, ignore_case_, ignore_underscore_) >= 0); |
| 4165 | } |
| 4166 | |
| 4167 | /// Get the value that goes for a flag, nominally gets the default value but allows for overrides if not |
| 4168 | /// disabled |
nothing calls this directly
no test coverage detected