[llvm-commits] [llvm] r101691 - /llvm/trunk/lib/System/Program.cpp

Chris Lattner sabre at nondot.org
Sat Apr 17 20:33:55 PDT 2010


Author: lattner
Date: Sat Apr 17 22:33:55 2010
New Revision: 101691

URL: http://llvm.org/viewvc/llvm-project?rev=101691&view=rev
Log:
unnest from namespace.

Modified:
    llvm/trunk/lib/System/Program.cpp

Modified: llvm/trunk/lib/System/Program.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Program.cpp?rev=101691&r1=101690&r2=101691&view=diff
==============================================================================
--- llvm/trunk/lib/System/Program.cpp (original)
+++ llvm/trunk/lib/System/Program.cpp Sat Apr 17 22:33:55 2010
@@ -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 @@
   prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg);
 }
 
-
-}
-
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
 #include "Unix/Program.inc"





More information about the llvm-commits mailing list