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

LGTM!



================
Comment at: 
clang-tools-extra/clang-tidy/readability/IdentifierNamingCheck.cpp:804
+        if (const auto *Typedef = TypePtr->getAs<TypedefType>()) {
+          addUsage(NamingCheckFailures, Typedef->getDecl(),
+                   Value->getSourceRange());
----------------
madsravn wrote:
> hokein wrote:
> > We are risky of dereferencing a nullptr, as the `TypePtr` can be null now.
> Are we not checking for null in the line where `TypePtr` gets declared? Or am 
> I misunderstanding? 
I don't see a null pointer dereference here for `TypePtr`; I think the code is 
fine as-is.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D62404/new/

https://reviews.llvm.org/D62404



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

Reply via email to