commit 1b4e220312aaa168485b1438f8ec356e8328be12
parent 2bec65284938bb9958172dce9a4792ce4e11efc3
Author: [email protected] <[email protected]>
Date: Tue, 8 Nov 2016 06:19:27 +0300
widen: fix ambiguous function call
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/base/shuffle.hpp b/include/kfr/base/shuffle.hpp
@@ -157,7 +157,7 @@ CMT_INLINE vec<T, count> concat_and_slice(const vec<T, N1>& x, const vec<T, N2>&
KFR_FN(concat_and_slice)
-template <size_t Nout, typename T, size_t N>
+template <size_t Nout, typename T, size_t N, KFR_ENABLE_IF(Nout > N)>
CMT_INLINE vec<T, Nout> widen(const vec<T, N>& x, identity<T> newvalue = T())
{
static_assert(Nout > N, "Nout > N");