From 1c3199afb8aeab5f4dfcef60999d13d9c6877a67 Mon Sep 17 00:00:00 2001 From: Francois Pichet Date: Sat, 23 Jul 2011 11:36:43 +0000 Subject: [PATCH] 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 --- lib/Driver/Compilation.cpp | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.50.1