Skip to content
Snippets Groups Projects
Commit d6c1b215 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix msvc compile

parent be3c82f1
No related branches found
No related tags found
No related merge requests found
...@@ -390,8 +390,8 @@ void ChainComplex::computeHomology(bool dual) ...@@ -390,8 +390,8 @@ void ChainComplex::computeHomology(bool dual)
void ChainComplex::matrixTest() void ChainComplex::matrixTest()
{ {
int rows = 3; const int rows = 3;
int cols = 6; const int cols = 6;
long int elems[rows*cols]; long int elems[rows*cols];
for(int i = 1; i<=rows*cols; i++) elems[i-1] = i; for(int i = 1; i<=rows*cols; i++) elems[i-1] = i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment