| 3020 | } |
| 3021 | |
| 3022 | std::string SystemTools::GetRealPath(std::string const& path, |
| 3023 | std::string* errorMessage) |
| 3024 | { |
| 3025 | std::string ret; |
| 3026 | Realpath(path, ret, errorMessage); |
| 3027 | return ret; |
| 3028 | } |
| 3029 | |
| 3030 | // Remove any trailing slash from the name except in a root component. |
| 3031 | static char const* RemoveTrailingSlashes( |
nothing calls this directly
no test coverage detected