Namespace fixup for D68340 build on MSVC
authorDavid Tenty <daltenty@ibm.com>
Thu, 24 Oct 2019 19:47:08 +0000 (15:47 -0400)
committerDavid Tenty <daltenty@ibm.com>
Thu, 24 Oct 2019 19:47:08 +0000 (15:47 -0400)
we seem to run into issues with nested namespace lookups in recently landed
D68340 so just make them explicit.

clang/lib/Driver/ToolChains/AIX.cpp

index 369a5fc..b548919 100644 (file)
@@ -16,6 +16,8 @@
 
 namespace aix = clang::driver::tools::aix;
 using AIX = clang::driver::toolchains::AIX;
+using namespace clang::driver;
+using namespace clang::driver::tools;
 
 using namespace llvm::opt;