This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG9ea912fe978d: [diagtool] explain that yellow is used to denote disabled-by-default warnings (authored by nickdesaulniers).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D146827/new/ https://reviews.llvm.org/D146827 Files: clang/tools/diagtool/TreeView.cpp Index: clang/tools/diagtool/TreeView.cpp =================================================================== --- clang/tools/diagtool/TreeView.cpp +++ clang/tools/diagtool/TreeView.cpp @@ -127,6 +127,9 @@ void showKey() { out << '\n' << Colors::GREEN << "GREEN" << Colors::RESET << " = enabled by default"; + out << '\n' + << Colors::YELLOW << "YELLOW" << Colors::RESET + << " = disabled by default"; out << '\n' << Colors::RED << "RED" << Colors::RESET << " = unimplemented (accepted for GCC compatibility)\n\n"; }
Index: clang/tools/diagtool/TreeView.cpp =================================================================== --- clang/tools/diagtool/TreeView.cpp +++ clang/tools/diagtool/TreeView.cpp @@ -127,6 +127,9 @@ void showKey() { out << '\n' << Colors::GREEN << "GREEN" << Colors::RESET << " = enabled by default"; + out << '\n' + << Colors::YELLOW << "YELLOW" << Colors::RESET + << " = disabled by default"; out << '\n' << Colors::RED << "RED" << Colors::RESET << " = unimplemented (accepted for GCC compatibility)\n\n"; }
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits