Skip to content

Commit cdf4280

Browse files
committed
Fix common fwd
1 parent 17e4b6a commit cdf4280

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/xsimd/arch/common/xsimd_common_arithmetic.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include <type_traits>
1818

1919
#include "../../types/xsimd_batch_constant.hpp"
20+
#include "../xsimd_common_fwd.hpp"
2021
#include "./xsimd_common_details.hpp"
2122

2223
namespace xsimd
@@ -37,7 +38,7 @@ namespace xsimd
3738
}
3839

3940
// bitwise_lshift multiple (constant)
40-
template <class A, class T, T... Vals, detail::enable_integral_t<T> = 0>
41+
template <class A, class T, T... Vals, detail::enable_integral_t<T>>
4142
XSIMD_INLINE batch<T, A> bitwise_lshift(batch<T, A> const& lhs, batch_constant<T, A, Vals...> const& rhs, requires_arch<common> req) noexcept
4243
{
4344
return bitwise_lshift(lhs, rhs.as_batch(), req);

0 commit comments

Comments
 (0)