[flang-commits] [PATCH] D88001: [flang][msvc] Add explicit function template argument to applyLamda. NFC.
Michael Kruse via Phabricator via flang-commits
flang-commits at lists.llvm.org
Tue Sep 22 12:23:02 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG97ca41e1ddfb: [flang][msvc] Add explicit function template argument to applyLamda. NFC. (authored by Meinersbur).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88001/new/
https://reviews.llvm.org/D88001
Files:
flang/lib/Parser/expr-parsers.cpp
Index: flang/lib/Parser/expr-parsers.cpp
===================================================================
--- flang/lib/Parser/expr-parsers.cpp
+++ flang/lib/Parser/expr-parsers.cpp
@@ -379,8 +379,8 @@
return Expr{Expr::DefinedBinary(
std::move(op), std::move(result).value(), std::move(right))};
}};
- auto more{
- attempt(sourced(applyLambda(defBinOp, definedOpName, level5Expr)))};
+ auto more{attempt(
+ sourced(applyLambda<Expr>(defBinOp, definedOpName, level5Expr)))};
while (std::optional<Expr> next{more.Parse(state)}) {
result = std::move(next);
result->source.ExtendToCover(source);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88001.293548.patch
Type: text/x-patch
Size: 670 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20200922/c82b6b26/attachment.bin>
More information about the flang-commits
mailing list