| 149 | struct FileExtensions |
| 150 | { |
| 151 | bool Test(cm::string_view ext) const |
| 152 | { |
| 153 | return (this->unordered.find(ext) != this->unordered.end()); |
| 154 | } |
| 155 | |
| 156 | std::vector<std::string> ordered; |
| 157 | std::unordered_set<cm::string_view> unordered; |
no test coverage detected