| 105 | } |
| 106 | |
| 107 | bool Path::sameFileName(const std::string &fname1, const std::string &fname2) |
| 108 | { |
| 109 | return caseInsensitiveFilesystem() ? (caseInsensitiveStringCompare(fname1, fname2) == 0) : (fname1 == fname2); |
| 110 | } |
| 111 | |
| 112 | std::string Path::removeQuotationMarks(std::string path) |
| 113 | { |
nothing calls this directly
no test coverage detected