Remove sys::PathSeparator.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184852 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2013-06-25 14:32:45 +00:00
parent f97c7fef52
commit deeb5724b8
3 changed files with 0 additions and 8 deletions

View File

@ -497,10 +497,6 @@ namespace sys {
/// @}
};
/// This is the OS-specific path separator: a colon on Unix or a semicolon
/// on Windows.
extern const char PathSeparator;
}
}

View File

@ -81,8 +81,6 @@ inline bool lastIsSlash(const std::string& path) {
namespace llvm {
using namespace sys;
const char sys::PathSeparator = ':';
StringRef Path::GetEXESuffix() {
return StringRef();
}

View File

@ -42,8 +42,6 @@ static void FlipBackSlashes(std::string& s) {
namespace llvm {
namespace sys {
const char PathSeparator = ';';
StringRef Path::GetEXESuffix() {
return "exe";
}