unnest from namespace.
authorChris Lattner <sabre@nondot.org>
Sun, 18 Apr 2010 03:33:55 +0000 (03:33 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Apr 2010 03:33:55 +0000 (03:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101691 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Program.cpp

index a3049d46fd654bc9b9d6c1fbefa8164381511a7e..cd58c2cc578cb27c298613c1fc1456db3f9dcf79 100644 (file)
@@ -13,8 +13,7 @@
 
 #include "llvm/System/Program.h"
 #include "llvm/Config/config.h"
-
-namespace llvm {
+using namespace llvm;
 using namespace sys;
 
 //===----------------------------------------------------------------------===//
@@ -48,9 +47,6 @@ Program::ExecuteNoWait(const Path& path,
   prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg);
 }
 
-
-}
-
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
 #include "Unix/Program.inc"