Skip to content
Snippets Groups Projects
Commit d95f177b authored by Jonathan Youett's avatar Jonathan Youett
Browse files

Avoid comparison of unsigned and signed int

parent 1eb5f76f
Branches
No related tags found
No related merge requests found
......@@ -838,7 +838,7 @@ void LargeDeformationCoupling<field_type, GridType0,GridType1>::setupIndexPatter
const auto& indexSet0 = grid0_->leafIndexSet();
const auto& indexSet1 = grid1_->leafIndexSet();
int size0{indexSet0.size(dim)},size1{indexSet1.size(dim)};
size_t size0(indexSet0.size(dim)),size1(indexSet1.size(dim));
MatrixIndexSet nmIndices(nObstacles, size0);
MatrixIndexSet mIndices(nObstacles, size1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment