================
@@ -22,7 +22,8 @@ namespace clang::tidy::performance {
class NoexceptFunctionBaseCheck : public ClangTidyCheck {
public:
NoexceptFunctionBaseCheck(StringRef Name, ClangTidyContext *Context)
- : ClangTidyCheck(Name, Context) {}
+ : ClangTidyCheck(Name, Context)
+ , AllowFalseEvaluated(Options.getLocalOrGlobal("AllowFalseEvaluated",
false)) {}
----------------
HerrCai0907 wrote:
Use getLocal.
https://github.com/llvm/llvm-project/pull/126897
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits