Skip to content
Snippets Groups Projects
Commit 6b67ed62 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] TES: Use unsigned int for integration points.

parent fe2687dd
No related branches found
No related tags found
No related merge requests found
...@@ -147,7 +147,7 @@ void TESLocalAssembler<ShapeFunction_, IntegrationMethod_, GlobalDim>:: ...@@ -147,7 +147,7 @@ void TESLocalAssembler<ShapeFunction_, IntegrationMethod_, GlobalDim>::
_d.preEachAssemble(); _d.preEachAssemble();
for (std::size_t ip(0); ip < n_integration_points; ip++) for (unsigned ip = 0; ip < n_integration_points; ip++)
{ {
auto const& sm = _shape_matrices[ip]; auto const& sm = _shape_matrices[ip];
auto const& wp = integration_method.getWeightedPoint(ip); auto const& wp = integration_method.getWeightedPoint(ip);
......
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