diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-01 02:48:43 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-01 02:48:43 +0000 |
commit | 9cf96e853edba13c42b71ce307d5114ec46e3aa9 (patch) | |
tree | 14a65cdcf93ae3bc679433c88ba9a88122a10cf7 /include | |
parent | 722d5adac1c3af88e785088eda594c7f656e9ed8 (diff) | |
download | external_llvm-9cf96e853edba13c42b71ce307d5114ec46e3aa9.zip external_llvm-9cf96e853edba13c42b71ce307d5114ec46e3aa9.tar.gz external_llvm-9cf96e853edba13c42b71ce307d5114ec46e3aa9.tar.bz2 |
Support/PathV2: Remove is_valid. It was only added because Path had it, but
apparently it is unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120540 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/PathV2.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Support/PathV2.h b/include/llvm/Support/PathV2.h index c3feca7..8531484 100644 --- a/include/llvm/Support/PathV2.h +++ b/include/llvm/Support/PathV2.h @@ -218,14 +218,6 @@ error_code current_path(SmallVectorImpl<char> &result); // The following are purely lexical. -/// @brief Is the current path valid? -/// -/// @param path Input path. -/// @param result Set to true if the path is valid, false if it is not. -/// @results errc::success if result has been successfully set, otherwise a -/// platform specific error_code. -error_code is_valid(const Twine &path, bool &result); - /// @brief Get root name. /// /// //net/hello => //net |