Skip to content
Snippets Groups Projects
Commit 63e014d5 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Do not use size_t

parent b362f667
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ int main() {
VectorType f(grid.size(grid.maxLevel(), dim));
// Fill right-hand side with semi-random numbers
for (size_t i = 0; i < f.size(); ++i)
for (size_t j = 0; j < dim; ++j)
for (int j = 0; j < dim; ++j)
f[i][j] = 300;
VectorType u1(grid.size(grid.maxLevel(), dim));
......
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