Skip to content
Snippets Groups Projects
Commit 9841b9a0 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed IndexType in StaticMatrix

parent 02b6d079
No related branches found
No related tags found
No related merge requests found
......@@ -24,11 +24,13 @@ template< typename Value,
typename Permutation = std::index_sequence< 0, 1 > > // identity by default
class StaticMatrix
: public Containers::StaticNDArray< Value,
Containers::SizesHolder< std::size_t, Rows, Columns >,
// note that using std::size_t in SizesHolder does not make sense, since the
// StaticNDArray is based on StaticArray, which uses int as IndexType
Containers::SizesHolder< int, Rows, Columns >,
Permutation >
{
using Base = Containers::StaticNDArray< Value,
Containers::SizesHolder< std::size_t, Rows, Columns >,
Containers::SizesHolder< int, Rows, Columns >,
Permutation >;
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment