mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Jeff's fix was fine
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36563 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9728905481
commit
ee181bc899
@ -177,6 +177,8 @@ namespace sys {
|
|||||||
/// This constructor will accept a character range as a path. No checking
|
/// 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
|
/// is done on this path to determine if it is valid. To determine
|
||||||
/// validity of the path, use the isValid method.
|
/// 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)
|
explicit Path(const char *StrStart, unsigned StrLen)
|
||||||
: path(StrStart, StrStart+StrLen) {}
|
: path(StrStart, StrStart+StrLen) {}
|
||||||
|
|
||||||
@ -549,12 +551,6 @@ namespace sys {
|
|||||||
PathWithStatus(const Path &other)
|
PathWithStatus(const Path &other)
|
||||||
: Path(other), status(), fsIsValid(false) {}
|
: 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
|
/// 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
|
/// done on this path to determine if it is valid. To determine validity
|
||||||
/// of the path, use the isValid method.
|
/// of the path, use the isValid method.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user