Skip to content
Snippets Groups Projects
Commit fbbed34f authored by Chris Cantwell's avatar Chris Cantwell
Browse files

Fixed Windows compile error.

parent 74b43883
No related branches found
No related tags found
No related merge requests found
...@@ -239,7 +239,7 @@ namespace Nektar ...@@ -239,7 +239,7 @@ namespace Nektar
} }
else // quad face. else // quad face.
{ {
int N = sqrt(Ntot); int N = (int)sqrt((double)Ntot);
for(int j = 1; j < N-1; ++j) for(int j = 1; j < N-1; ++j)
{ {
for(int k = 1; k < N-1; ++k) for(int k = 1; k < N-1; ++k)
......
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