| 123 | } |
| 124 | |
| 125 | void cmCMakePath::GetNativePath(std::string& path) const |
| 126 | { |
| 127 | cm::filesystem::path tmp(this->Path); |
| 128 | tmp.make_preferred(); |
| 129 | |
| 130 | path = tmp.string(); |
| 131 | } |
| 132 | void cmCMakePath::GetNativePath(std::wstring& path) const |
| 133 | { |
| 134 | cm::filesystem::path tmp(this->Path); |
no test coverage detected