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

LGTM aside from a minor nit, thank you!



================
Comment at: clang/lib/Sema/SemaDeclCXX.cpp:11681
+  if (isa<UnresolvedUsingIfExistsDecl>(Target) !=
+      (NonTag && isa<UnresolvedUsingIfExistsDecl>(NonTag))) {
+    if (!NonTag && !Tag)
----------------
You can use `isa_and_nonnull<>()` instead of testing for null yourself.


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

https://reviews.llvm.org/D90188

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

Reply via email to