diff options
author | Francois Pichet <pichet2000@gmail.com> | 2011-07-23 11:36:43 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2011-07-23 11:36:43 +0000 |
commit | 24fc69e5315e81282eb5685f9f29a24aa2f43a45 (patch) | |
tree | 99b883ff0de87cd8f709d55afc896b4c075cc1b6 /clang/lib | |
parent | 0e62c1cc0b47c787cf481c43d9f71b3df92581ad (diff) | |
download | bcm5719-llvm-24fc69e5315e81282eb5685f9f29a24aa2f43a45.tar.gz bcm5719-llvm-24fc69e5315e81282eb5685f9f29a24aa2f43a45.zip |
Unbreak the MSVC build, using namespace clang is required otherwise MSVC will not find raw_ostream.
llvm-svn: 135853
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Driver/Compilation.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Driver/Compilation.cpp b/clang/lib/Driver/Compilation.cpp index df07f783b26..47ac1756c81 100644 --- a/clang/lib/Driver/Compilation.cpp +++ b/clang/lib/Driver/Compilation.cpp @@ -20,7 +20,9 @@ #include "llvm/Support/Program.h" #include <sys/stat.h> #include <errno.h> + using namespace clang::driver; +using namespace clang; Compilation::Compilation(const Driver &D, const ToolChain &_DefaultToolChain, InputArgList *_Args, DerivedArgList *_TranslatedArgs) |