[flang-commits] [PATCH] D88052: [flang][msvc] Explicitly reference "this" inside closure. NFC.
Michael Kruse via Phabricator via flang-commits
flang-commits at lists.llvm.org
Tue Sep 22 12:23:06 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG62afc3129dc2: [flang][msvc] Explicitly reference "this" inside closure. NFC. (authored by Meinersbur).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88052/new/
https://reviews.llvm.org/D88052
Files:
flang/lib/Semantics/symbol.cpp
Index: flang/lib/Semantics/symbol.cpp
===================================================================
--- flang/lib/Semantics/symbol.cpp
+++ flang/lib/Semantics/symbol.cpp
@@ -258,7 +258,7 @@
return has<SubprogramNameDetails>() || has<EntityDetails>();
},
[&](const DerivedTypeDetails &) {
- auto *derived{detailsIf<DerivedTypeDetails>()};
+ auto *derived{this->detailsIf<DerivedTypeDetails>()};
return derived && derived->isForwardReferenced();
},
[](const auto &) { return false; },
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88052.293549.patch
Type: text/x-patch
Size: 597 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20200922/1325a754/attachment-0001.bin>
More information about the flang-commits
mailing list