| 354 | |
| 355 | |
| 356 | std::string toCanonicalPath(std::string filename) |
| 357 | { |
| 358 | return fs::weakly_canonical(toNative(filename)).u8string(); |
| 359 | } |
| 360 | |
| 361 | // if the filename is an absolute path, just return it |
| 362 | // otherwise, make it absolute (relative to current working dir) and return that |
no test coverage detected