Skip to content

Commit

Permalink
fixing ouput range types
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Hoeflinger <[email protected]>
  • Loading branch information
danhoeflinger committed Aug 29, 2024
1 parent ec5e957 commit df02a01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ struct __write_to_id_if
{
template <typename _OutRng, typename _SizeType, typename _ValueType>
void
operator()(const _OutRng& __out_rng, _SizeType __id, const _ValueType& __v) const
operator()(_OutRng& __out_rng, _SizeType __id, const _ValueType& __v) const
{
// Use of an explicit cast to our internal tuple type is required to resolve conversion issues between our
// internal tuple and std::tuple. If the underlying type is not a tuple, then the type will just be passed through.
Expand Down

0 comments on commit df02a01

Please sign in to comment.