---------------------------------------------------------------------
| 36 | { |
| 37 | //--------------------------------------------------------------------- |
| 38 | fs::path NormalizePath(const fs::path& path) |
| 39 | { |
| 40 | fs::path lowerPath = boost::algorithm::to_lower_copy(path.wstring()); |
| 41 | lowerPath.make_preferred(); |
| 42 | |
| 43 | return lowerPath; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | //------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected