Module builds somehow report an ambiguity between clang::Diagnostic and
clang::Tooling::Diagnostic. It seems as if one of the additional headers
brought in by the module brings the clang namespace to the toplevel. I
could not find out the reason for that, so for now I go with the simple
fix to bring the build back to green.
rdar://
33321397
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@308071
91177308-0d34-0410-b5e6-
96231b3b80d8
using namespace llvm;
using namespace clang::tooling;
+using clang::tooling::Diagnostic;
static Diagnostic makeDiagnostic(StringRef DiagnosticName,
const std::string &Message, int FileOffset,