[PATCH] D64075: [ASTImporter] Fix structural eq of lambdas
Gabor Marton via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 3 06:18:53 PDT 2019
martong marked 2 inline comments as done.
martong added inline comments.
================
Comment at: clang/lib/AST/ASTStructuralEquivalence.cpp:1182
+ if (D1CXX->isLambda()) {
+ if (!D2CXX->isLambda())
----------------
a_sidorin wrote:
> Should we return false if `D1CXX->isLambda() != D2CXX->isLambda()`?
Thanks, good catch, I have added it.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64075/new/
https://reviews.llvm.org/D64075
More information about the cfe-commits
mailing list