Skip to content
Snippets Groups Projects
Commit ea481cd7 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Fix signed/unsigned warning

[[Imported from SVN: r10068]]
parent 42c281e3
No related branches found
No related tags found
No related merge requests found
...@@ -294,7 +294,7 @@ assembleGradientAndHessian(const Entity& element, ...@@ -294,7 +294,7 @@ assembleGradientAndHessian(const Entity& element,
// Copy Hessian into Dune data type // Copy Hessian into Dune data type
for(size_t i=0; i<nDoubles; i++) for(size_t i=0; i<nDoubles; i++)
for (size_t j=0; j<nDirections; j++) for (int j=0; j<nDirections; j++)
embeddedHessian[j/blocksize][i/embeddedBlocksize][j%blocksize][i%embeddedBlocksize] = rawHessian[i][j]; embeddedHessian[j/blocksize][i/embeddedBlocksize][j%blocksize][i%embeddedBlocksize] = rawHessian[i][j];
for(size_t i=0; i<nDoubles; i++) { for(size_t i=0; i<nDoubles; i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment