Skip to content
Snippets Groups Projects
Commit a5298f02 authored by TESLA03\Master's avatar TESLA03\Master
Browse files

fix build error in Pipeline #4974

parent 3a6edd09
No related branches found
No related tags found
1 merge request!67fix initialGridInformations() in GridReader
......@@ -632,7 +632,7 @@ void GridReader::initalGridInformations()
std::vector<int> gridX, gridY, gridZ;
std::vector<int> distX, distY, distZ;
for (size_t i = 0; i <= maxLevel; i++) {
for (int i = 0; i <= maxLevel; i++) {
gridX.push_back(0);
gridY.push_back(0);
gridZ.push_back(0);
......
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