Skip to content

Commit

Permalink
[mlir] Attempt to fix windows build after D137374
Browse files Browse the repository at this point in the history
  • Loading branch information
River707 committed Nov 5, 2022
1 parent e83446f commit 55e8998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/include/mlir/IR/SubElementInterfaces.h
Expand Up @@ -196,7 +196,7 @@ struct AttrTypeSubElementHandler<
static void walk(const std::tuple<Ts...> &param,
AttrTypeSubElementWalker &walker) {
std::apply(
[&](auto &&...params) {
[&](const Ts &...params) {
(AttrTypeSubElementHandler<Ts>::walk(params, walker), ...);
},
param);
Expand Down

0 comments on commit 55e8998

Please sign in to comment.