================ @@ -38,6 +39,7 @@ #include <optional> using namespace clang; +using namespace clang::diag; ---------------- dbartol wrote:
That was really just to bring the new enum scope (which is actually a namespace under `clang::diag`) into scope, but I forgot that namespace aliases were a thing. Fixed to use a namespace alias for the enum's nested namespace, and explicitly qualifying all of the actual diag IDs with `diag::`. https://github.com/llvm/llvm-project/pull/172532 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
