Skip to content
Snippets Groups Projects
Commit 36314b73 authored by Philip Trettner's avatar Philip Trettner
Browse files

fixed more value always_false occurances

parent 5ee2888f
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ template <int D>
else if constexpr (D == 4)
return c.comp0 || c.comp1 || c.comp2 || c.comp3;
else
static_assert(always_false<D>, "only up to 4D supported");
static_assert(always_false_v<D>, "only up to 4D supported");
}
template <int D>
......@@ -31,6 +31,6 @@ template <int D>
else if constexpr (D == 4)
return c.comp0 && c.comp1 && c.comp2 && c.comp3;
else
static_assert(always_false<D>, "only up to 4D supported");
static_assert(always_false_v<D>, "only up to 4D supported");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment