diff options
Diffstat (limited to 'clang/unittests/AST/StmtPrinterTest.cpp')
-rw-r--r-- | clang/unittests/AST/StmtPrinterTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/AST/StmtPrinterTest.cpp b/clang/unittests/AST/StmtPrinterTest.cpp index d7265176d12..0b334e768ff 100644 --- a/clang/unittests/AST/StmtPrinterTest.cpp +++ b/clang/unittests/AST/StmtPrinterTest.cpp @@ -33,7 +33,7 @@ namespace { void PrintStmt(raw_ostream &Out, const ASTContext *Context, const Stmt *S) { PrintingPolicy Policy = Context->getPrintingPolicy(); - S->printPretty(Out, /*Helper*/ 0, Policy); + S->printPretty(Out, /*Helper*/ nullptr, Policy); } class PrintMatch : public MatchFinder::MatchCallback { |