Skip to content

Commit 064859d

Browse files
committed
linalg: fix cast
1 parent 2268269 commit 064859d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/proxsuite/linalg/veg/internal/macros.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ struct StrLiteralLen<StrLiteralImpl<N> const>
11481148
template<typename Seq, auto Literal>
11491149
struct StrLiteralExpand;
11501150

1151-
template<usize... Is, StrLiteralImpl<isize{ sizeof...(Is) }> L>
1151+
template<usize... Is, StrLiteralImpl<static_cast<isize>(sizeof...(Is))> L>
11521152
struct StrLiteralExpand<_meta::integer_sequence<usize, Is...>, L>
11531153
{
11541154
using Type = StrLiteralConstant<L._[Is]...>;

0 commit comments

Comments
 (0)