aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Sema/ObjCMethodList.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Sema/ObjCMethodList.h')
-rw-r--r--include/clang/Sema/ObjCMethodList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/ObjCMethodList.h b/include/clang/Sema/ObjCMethodList.h
index 94e380721de2..20033567dff9 100644
--- a/include/clang/Sema/ObjCMethodList.h
+++ b/include/clang/Sema/ObjCMethodList.h
@@ -26,7 +26,7 @@ struct ObjCMethodList {
/// \brief The next list object and 2 bits for extra info.
llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits;
- ObjCMethodList() : Method(0) { }
+ ObjCMethodList() : Method(nullptr) { }
ObjCMethodList(ObjCMethodDecl *M, ObjCMethodList *C)
: Method(M), NextAndExtraBits(C, 0) { }