Skip to content
Snippets Groups Projects
Commit adafa4eb authored by Kutscher's avatar Kutscher
Browse files

fix 4 for merge request

parent 223e165d
No related branches found
No related tags found
2 merge requests!193Changing LBMReal to real; Changing double and float to real; Changing using constants from UbMath.h to NumericConstants.h,!191Changing LBMReal to real; Changing double and float to real; Changing using constants from UbMath.h to NumericConstants.h
...@@ -40,7 +40,7 @@ void RefineAroundGbObjectHelper::refine() ...@@ -40,7 +40,7 @@ void RefineAroundGbObjectHelper::refine()
grid->accept(overlapVisitor); grid->accept(overlapVisitor);
std::vector<int> dirs; std::vector<int> dirs;
for (int i = DIR_P00; i <= DIR_0MP; i++) { for (int i = (int)DIR_P00; i <= (int)DIR_0MP; i++) {
dirs.push_back(i); dirs.push_back(i);
} }
SetInterpolationDirsBlockVisitor interDirsVisitor(dirs); SetInterpolationDirsBlockVisitor interDirsVisitor(dirs);
......
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