Commit 0d206ac4 authored by Lukas Cejka's avatar Lukas Cejka
Browse files

Fixed error where RealType was being used instead of IndexType.

parent 0b74b0ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ void test_SetCompressedRowLengths()
    rowLengths.setSize( rows );
    rowLengths.setValue( 3 );
    
    RealType value = 1;
    IndexType value = 1;
    for( IndexType i = 2; i < rows; i++ )
        rowLengths.setElement( i, value++ );