diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-18 03:33:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-18 03:33:55 +0000 |
commit | b221ecbc6243c70d8d7c7bdae654ef30a33a8ab3 (patch) | |
tree | cf419105ef5a9e5f7e880d4e42f3e7aff0330edd /lib/System/Program.cpp | |
parent | f06b859479cfcc490db86c92b5b49904a0c5d04d (diff) |
unnest from namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Program.cpp')
-rw-r--r-- | lib/System/Program.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/System/Program.cpp b/lib/System/Program.cpp index a3049d46fd..cd58c2cc57 100644 --- a/lib/System/Program.cpp +++ b/lib/System/Program.cpp @@ -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" |