summaryrefslogtreecommitdiff
path: root/include/llvm/System/Path.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-29 17:44:10 +0000
committerChris Lattner <sabre@nondot.org>2007-04-29 17:44:10 +0000
commitee181bc899d06c642f27e6a5157e61a5079d0acd (patch)
tree2caec735675258cd0da0ea9b9557c50bcd2248f6 /include/llvm/System/Path.h
parent97289054814a2a4e3dc13d494fb5d1d82ab46c75 (diff)
downloadllvm-ee181bc899d06c642f27e6a5157e61a5079d0acd.tar.gz
llvm-ee181bc899d06c642f27e6a5157e61a5079d0acd.tar.bz2
llvm-ee181bc899d06c642f27e6a5157e61a5079d0acd.tar.xz
Jeff's fix was fine
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36563 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System/Path.h')
-rw-r--r--include/llvm/System/Path.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h
index 8ab0bb7aee..a595efbfed 100644
--- a/include/llvm/System/Path.h
+++ b/include/llvm/System/Path.h
@@ -177,6 +177,8 @@ namespace sys {
/// This constructor will accept a character range as a path. No checking
/// is done on this path to determine if it is valid. To determine
/// validity of the path, use the isValid method.
+ /// @param p The path to assign.
+ /// @brief Construct a Path from a string.
explicit Path(const char *StrStart, unsigned StrLen)
: path(StrStart, StrStart+StrLen) {}
@@ -549,12 +551,6 @@ namespace sys {
PathWithStatus(const Path &other)
: Path(other), status(), fsIsValid(false) {}
- /// This constructor will accept a character range as a path. No checking
- /// is done on this path to determine if it is valid. To determine
- /// validity of the path, use the isValid method.
- PathWithStatus(const char *StrStart, unsigned StrLen)
- : Path(StrStart, StrLen), fsIsValid(false) {}
-
/// This constructor will accept a std::string as a path. No checking is
/// done on this path to determine if it is valid. To determine validity
/// of the path, use the isValid method.