| 50 | } |
| 51 | |
| 52 | bool numeric_string_compare(const std::string& s1, const std::string& s2) { |
| 53 | return num_from_string(s1) < num_from_string(s2); |
| 54 | } |
| 55 | |
| 56 | FolderReader::FolderReader(const string& folder_path, const string& ending_with, |
| 57 | const Order order) |
nothing calls this directly
no test coverage detected