diff options
-rw-r--r-- | include/llvm/System/Path.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 84d99122b1..573edda15c 100644 --- a/include/llvm/System/Path.h +++ b/include/llvm/System/Path.h @@ -174,6 +174,14 @@ namespace sys { /// @brief Construct a Path from a string. explicit Path(const std::string& p) : path(p) {} + /// 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) {} + /// @} /// @name Operators /// @{ |