diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-13 05:17:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-13 05:17:59 +0000 |
commit | 510190e4816b3eaebddd810def08abef7f7a577e (patch) | |
tree | 422cb2e25448ffd7b4d95519bfb9af64da367c56 /lib | |
parent | 50d70127d81e8251742ee4432ea807be1b30548f (diff) | |
download | external_llvm-510190e4816b3eaebddd810def08abef7f7a577e.zip external_llvm-510190e4816b3eaebddd810def08abef7f7a577e.tar.gz external_llvm-510190e4816b3eaebddd810def08abef7f7a577e.tar.bz2 |
remove extraneous namespace qualifier, PR2142
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/System/Win32/Path.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 0499e61..b25e661 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -44,8 +44,7 @@ static void FlipBackSlashes(std::string& s) { namespace llvm { namespace sys { - -extern const char sys::PathSeparator = ';'; +const char PathSeparator = ';'; bool Path::isValid() const { |