[PATCH] D100347: Fix the const overload of IgnoreExprNodes
Jesse Zhang via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 12 15:32:09 PDT 2021
d updated this revision to Diff 336983.
d added a comment.
rebase
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100347/new/
https://reviews.llvm.org/D100347
Files:
clang/include/clang/AST/IgnoreExpr.h
Index: clang/include/clang/AST/IgnoreExpr.h
===================================================================
--- clang/include/clang/AST/IgnoreExpr.h
+++ clang/include/clang/AST/IgnoreExpr.h
@@ -41,7 +41,7 @@
template <typename... FnTys>
const Expr *IgnoreExprNodes(const Expr *E, FnTys &&...Fns) {
- return const_cast<Expr *>(IgnoreExprNodes(E, std::forward<FnTys>(Fns)...));
+ return IgnoreExprNodes(const_cast<Expr *>(E), std::forward<FnTys>(Fns)...);
}
inline Expr *IgnoreImplicitCastsSingleStep(Expr *E) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100347.336983.patch
Type: text/x-patch
Size: 524 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210412/913326f4/attachment.bin>
More information about the cfe-commits
mailing list