We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62c549 commit 27925c3Copy full SHA for 27925c3
clang-tools-extra/clang-tidy/modernize/UseStdPrintCheck.cpp
@@ -23,7 +23,7 @@ AST_MATCHER(StringLiteral, isOrdinary) { return Node.isOrdinary(); }
23
} // namespace
24
25
UseStdPrintCheck::UseStdPrintCheck(StringRef Name, ClangTidyContext *Context)
26
- : ClangTidyCheck(Name, Context),
+ : ClangTidyCheck(Name, Context), PP(PP),
27
StrictMode(Options.getLocalOrGlobal("StrictMode", false)),
28
PrintfLikeFunctions(utils::options::parseStringList(
29
Options.get("PrintfLikeFunctions", ""))),
0 commit comments