From: Alexander Kornienko Date: Thu, 20 Dec 2012 12:23:54 +0000 (+0000) Subject: Minor coding style issue: NULL -> 0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c939453846395abc860cdb0239784daf4df4fb54;p=clang Minor coding style issue: NULL -> 0 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170688 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTDumper.cpp b/lib/AST/ASTDumper.cpp index d90fd1b248..d52b089462 100644 --- a/lib/AST/ASTDumper.cpp +++ b/lib/AST/ASTDumper.cpp @@ -71,7 +71,7 @@ namespace { void dumpBareType(QualType T); void dumpType(QualType T); void dumpBareDeclRef(const Decl *Node); - void dumpDeclRef(const Decl *Node, const char *Label = NULL); + void dumpDeclRef(const Decl *Node, const char *Label = 0); void dumpName(const NamedDecl *D); void dumpDeclContext(const DeclContext *DC);