[PATCH] D142437: [clang] Add the check of membership in decltype for the issue #58674
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 24 05:52:17 PST 2023
erichkeane accepted this revision.
erichkeane added a comment.
This revision is now accepted and ready to land.
1 nit, otherwise I don't have concerns.
================
Comment at: clang/lib/Sema/SemaExpr.cpp:2717
+ if ((MightBeImplicitMember = ThisClass->Equals(Class) ||
+ ThisClass->isDerivedFrom(Class, true)))
+ break;
----------------
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142437/new/
https://reviews.llvm.org/D142437
More information about the cfe-commits
mailing list