From: Francois Pichet Date: Sat, 23 Jul 2011 11:36:43 +0000 (+0000) Subject: Unbreak the MSVC build, using namespace clang is required otherwise MSVC will not... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c3199afb8aeab5f4dfcef60999d13d9c6877a67;p=clang Unbreak the MSVC build, using namespace clang is required otherwise MSVC will not find raw_ostream. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Compilation.cpp b/lib/Driver/Compilation.cpp index df07f783b2..47ac1756c8 100644 --- a/lib/Driver/Compilation.cpp +++ b/lib/Driver/Compilation.cpp @@ -20,7 +20,9 @@ #include "llvm/Support/Program.h" #include #include + using namespace clang::driver; +using namespace clang; Compilation::Compilation(const Driver &D, const ToolChain &_DefaultToolChain, InputArgList *_Args, DerivedArgList *_TranslatedArgs)