Remove dead code. Fixes pr20544.
[oota-llvm.git] / include / llvm / Support / FileSystem.h
index 556701c3ba349f734acaf939aac2af63aaa6da27..fd68d8741fd4be04b83d3e2b784e99967d2ae048 100644 (file)
@@ -276,14 +276,6 @@ private:
 ///          platform-specific error_code.
 std::error_code make_absolute(SmallVectorImpl<char> &path);
 
-/// @brief Normalize path separators in \a Path
-///
-/// If the path contains any '\' separators, they are transformed into '/'.
-/// This is particularly useful when cross-compiling Windows on Linux, but is
-/// safe to invoke on Windows, which accepts both characters as a path
-/// separator.
-std::error_code normalize_separators(SmallVectorImpl<char> &Path);
-
 /// @brief Create all the non-existent directories in path.
 ///
 /// @param path Directories to create.