Skip to content

Commit

Permalink
Fix auto return type.
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-Charles Caron committed Nov 8, 2023
1 parent c78d311 commit 68087c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/safe/meta.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ struct index_sequence<0, Is...>
};

template<std::size_t N>
constexpr auto make_index_sequence()
constexpr typename index_sequence<N>::type make_index_sequence()
{
return typename index_sequence<N>::type();
return {};
}
} // namespace impl

Expand Down

0 comments on commit 68087c3

Please sign in to comment.