Skip to content

Commit

Permalink
Merge pull request #165 from tcbrindle/cartesian_power_constructor_fix
Browse files Browse the repository at this point in the history
Fix cartesian_power constructor bug
  • Loading branch information
tcbrindle authored Jan 31, 2024
2 parents ac48f96 + 3ec5589 commit 03a2ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/flux/op/cartesian_power.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct cartesian_power_adaptor
FLUX_NO_UNIQUE_ADDRESS Base base_;

public:
constexpr explicit cartesian_power_adaptor(Base&& base)
constexpr explicit cartesian_power_adaptor(decays_to<Base> auto&& base)
: base_(FLUX_FWD(base))
{}

Expand Down

0 comments on commit 03a2ef5

Please sign in to comment.