diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-12 18:31:08 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-12 18:31:08 +0000 |
commit | ba7db7d8b4ea8f9c24aba8c75a228ffc0857964e (patch) | |
tree | 73b212fa69f7d10463aff84cafc82766eb4b4c9c | |
parent | d65bddcbe1385a4de212ecbbdc8919c54b3efeb0 (diff) |
Driver: Drop some unnecessary uses of clang namespace.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66813 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Driver/OptTable.cpp | 1 | ||||
-rw-r--r-- | lib/Driver/Option.cpp | 1 | ||||
-rw-r--r-- | lib/Driver/Types.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/lib/Driver/OptTable.cpp b/lib/Driver/OptTable.cpp index b2d14ca27f..d0124057c5 100644 --- a/lib/Driver/OptTable.cpp +++ b/lib/Driver/OptTable.cpp @@ -14,7 +14,6 @@ #include "clang/Driver/Option.h" #include <cassert> -using namespace clang; using namespace clang::driver; using namespace clang::driver::options; diff --git a/lib/Driver/Option.cpp b/lib/Driver/Option.cpp index 083eb8e9da..503b54d8fe 100644 --- a/lib/Driver/Option.cpp +++ b/lib/Driver/Option.cpp @@ -14,7 +14,6 @@ #include "llvm/Support/raw_ostream.h" #include <cassert> #include <algorithm> -using namespace clang; using namespace clang::driver; Option::Option(OptionClass _Kind, options::ID _ID, const char *_Name, diff --git a/lib/Driver/Types.cpp b/lib/Driver/Types.cpp index 7affa2d93a..88389c9ce3 100644 --- a/lib/Driver/Types.cpp +++ b/lib/Driver/Types.cpp @@ -12,7 +12,6 @@ #include <string.h> #include <cassert> -using namespace clang; using namespace clang::driver; using namespace clang::driver::types; |