diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-25 14:32:45 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-25 14:32:45 +0000 |
commit | db7c03f05e50cabd680861651629fc7859ea466b (patch) | |
tree | 03aaba9f866996d8c94ffb400a48022a1061afa8 /llvm/lib/Support | |
parent | 04b3fc4981482e74c7ba685fb206a3d5c62d0429 (diff) | |
download | bcm5719-llvm-db7c03f05e50cabd680861651629fc7859ea466b.tar.gz bcm5719-llvm-db7c03f05e50cabd680861651629fc7859ea466b.zip |
Remove sys::PathSeparator.
llvm-svn: 184852
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Unix/Path.inc | 2 | ||||
-rw-r--r-- | llvm/lib/Support/Windows/Path.inc | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Support/Unix/Path.inc b/llvm/lib/Support/Unix/Path.inc index fd7e069eea5..8e31f4cedf4 100644 --- a/llvm/lib/Support/Unix/Path.inc +++ b/llvm/lib/Support/Unix/Path.inc @@ -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(); } diff --git a/llvm/lib/Support/Windows/Path.inc b/llvm/lib/Support/Windows/Path.inc index 2f3dbba6454..ba13edc7c81 100644 --- a/llvm/lib/Support/Windows/Path.inc +++ b/llvm/lib/Support/Windows/Path.inc @@ -42,8 +42,6 @@ static void FlipBackSlashes(std::string& s) { namespace llvm { namespace sys { -const char PathSeparator = ';'; - StringRef Path::GetEXESuffix() { return "exe"; } |