diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-14 21:35:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-14 21:35:53 +0000 |
commit | 2cdd21c2e4d855500dfb53f77aa74da53ccf9de6 (patch) | |
tree | 98803f88a663bba4b7955f121b58306f5ae11d85 /lib/Support/PluginLoader.cpp | |
parent | b6d465f8131f5fb0b8e565685fb3395ed9aecbdb (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/PluginLoader.cpp')
-rw-r--r-- | lib/Support/PluginLoader.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp index 1729bb3365..be8833d009 100644 --- a/lib/Support/PluginLoader.cpp +++ b/lib/Support/PluginLoader.cpp @@ -22,8 +22,7 @@ #include "Config/dlfcn.h" #include "Config/link.h" #include <iostream> - -namespace llvm { +using namespace llvm; namespace { struct PluginLoader { @@ -40,5 +39,3 @@ namespace { static cl::opt<PluginLoader, false, cl::parser<std::string> > LoadOpt("load", cl::ZeroOrMore, cl::value_desc("plugin.so"), cl::desc("Load the specified plugin")); - -} // End llvm namespace |