Skip to content

Commit

Permalink
Arith: Correct rten::fmap_
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Dec 23, 2024
1 parent c73b2b2 commit 90d0c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arith/src/rten.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public:
template <typename F, typename... Args>
friend constexpr ARITH_INLINE ARITH_DEVICE ARITH_HOST void
fmap_(const F &f, const rten &x, const rten<Args, D> &...args) {
fmap_(f, x.args, args.elts...);
fmap_(f, x.elts, args.elts...);
}

template <
Expand Down

0 comments on commit 90d0c66

Please sign in to comment.