diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-29 18:31:14 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-29 18:31:14 +0000 |
commit | 8b1d5e20528617b9f026c97714e74b8f7252f343 (patch) | |
tree | 838682a6017d4b8d9698c83817aad7331a2cb49b | |
parent | d59761480e6ecae6e4aff28ae1ecad45845b8c0b (diff) | |
download | external_llvm-8b1d5e20528617b9f026c97714e74b8f7252f343.zip external_llvm-8b1d5e20528617b9f026c97714e74b8f7252f343.tar.gz external_llvm-8b1d5e20528617b9f026c97714e74b8f7252f343.tar.bz2 |
Remove declared but not implemented function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193637 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/FileSystem.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index 6baaeb8..48ff224 100644 --- a/include/llvm/Support/FileSystem.h +++ b/include/llvm/Support/FileSystem.h @@ -639,17 +639,6 @@ error_code openFileForWrite(const Twine &Name, int &ResultFD, OpenFlags Flags, error_code openFileForRead(const Twine &Name, int &ResultFD); -/// @brief Canonicalize path. -/// -/// Sets result to the file system's idea of what path is. The result is always -/// absolute and has the same capitalization as the file system. -/// -/// @param path Input path. -/// @param result Set to the canonicalized version of \a path. -/// @returns errc::success if result has been successfully set, otherwise a -/// platform specific error_code. -error_code canonicalize(const Twine &path, SmallVectorImpl<char> &result); - /// @brief Are \a path's first bytes \a magic? /// /// @param path Input path. |