alexfh accepted this revision.
alexfh added a comment.
This revision is now accepted and ready to land.

Thank you for tracking and fixing this! One nit inline.



================
Comment at: clang-tidy/modernize/UseNullptrCheck.cpp:194
+    // Catch the castExpr inside cxxDefaultArgExpr.
+    if (CXXDefaultArgExpr *E = dyn_cast<CXXDefaultArgExpr>(S))
+      C = dyn_cast<CastExpr>(E->getExpr());
----------------
Use `auto *`.


https://reviews.llvm.org/D26301



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to