Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Nov 25, 2023
1 parent 4c9c466 commit ae3c232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/GooseEYE/GooseEYE.h
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ class ClusterLabeller {
{
#ifdef GOOSEEYE_ENABLE_ASSERT
size_t n = m_label.size();
if constexpr (std::is_signed_v<T::value_type>) {
if constexpr (std::is_signed_v<typename T::value_type>) {
GOOSEEYE_ASSERT(
!std::any_of(begin, end, [n](size_t i) { return i >= n; }), std::out_of_range);
}
Expand Down

0 comments on commit ae3c232

Please sign in to comment.