Skip to content

Commit

Permalink
Update single header
Browse files Browse the repository at this point in the history
  • Loading branch information
tcbrindle authored and github-actions[bot] committed Feb 1, 2024
1 parent 6610792 commit 85b016e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions single_include/flux.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5321,8 +5321,9 @@ struct cartesian_power_fn {
} // end namespace detail

FLUX_EXPORT
template<std::size_t PowN>
inline constexpr auto cartesian_power = detail::cartesian_power_fn<PowN>{};
template<distance_t N>
requires (N >= 0)
inline constexpr auto cartesian_power = detail::cartesian_power_fn<N>{};

} // end namespace flux

Expand Down

0 comments on commit 85b016e

Please sign in to comment.