Remove Path::isAbsolute().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183835 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2013-06-12 14:47:33 +00:00
parent c1f4a4b264
commit 5475e2b01e
3 changed files with 0 additions and 29 deletions

View File

@ -219,13 +219,6 @@ namespace sys {
/// @name Disk Accessors
/// @{
public:
/// This function determines if the path name is absolute, as opposed to
/// relative.
/// @brief Determine if the path is absolute.
LLVM_ATTRIBUTE_DEPRECATED(
bool isAbsolute() const,
LLVM_PATH_DEPRECATED_MSG(path::is_absolute));
/// This function determines if the path name is absolute, as opposed to
/// relative.
/// @brief Determine if the path is absolute.

View File

@ -117,13 +117,6 @@ Path::isAbsolute(const char *NameStart, unsigned NameLen) {
return NameStart[0] == '/';
}
bool
Path::isAbsolute() const {
if (path.empty())
return false;
return path[0] == '/';
}
Path
Path::GetTemporaryDirectory(std::string *ErrMsg) {
#if defined(HAVE_MKDTEMP)

View File

@ -168,21 +168,6 @@ Path::isAbsolute(const char *NameStart, unsigned NameLen) {
}
}
bool
Path::isAbsolute() const {
// FIXME: This does not handle correctly an absolute path starting from
// a drive letter or in UNC format.
switch (path.length()) {
case 0:
return false;
case 1:
case 2:
return path[0] == '/';
default:
return path[0] == '/' || (path[1] == ':' && path[2] == '/');
}
}
static Path *TempDirectory;
Path