Skip to content
Snippets Groups Projects
Commit c98f4b35 authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Avoid one signed/unsigned warning

parent 43b1974b
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ std::vector<UnitVector<typename GridView::ctype,3> > computeVertexNormals(const
for (const auto& element : elements(gridView))
{
for (int i=0; i<element.subEntities(2); i++)
for (std::size_t i=0; i<element.subEntities(2); i++)
{
auto cornerPos = Dune::ReferenceElements<double,2>::general(element.type()).position(i,2);
auto tangent = element.geometry().jacobianTransposed(cornerPos);
......
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