Skip to content
Snippets Groups Projects
Commit e7cdbc65 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

avoid two signed/unsigned warnings

[[Imported from SVN: r7089]]
parent 3864c197
No related branches found
No related tags found
No related merge requests found
......@@ -266,7 +266,7 @@ assembleHessian(const Entity& element,
// ///////////////////////////////////////////////////////////////
// Loop over all blocks of the element matrix
// ///////////////////////////////////////////////////////////////
for (int i=0; i<A_.N(); i++) {
for (size_t i=0; i<A_.N(); i++) {
ColumnIterator cIt = A_[i].begin();
ColumnIterator cEndIt = A_[i].end();
......@@ -354,7 +354,7 @@ assembleHessian(const Entity& element,
// This is possible expensive, but I want to be absolute sure
// that the matrix is symmetric.
// ///////////////////////////////////////////////////////////////
for (int i=0; i<A_.N(); i++) {
for (size_t i=0; i<A_.N(); i++) {
ColumnIterator cIt = A_[i].begin();
ColumnIterator cEndIt = A_[i].end();
......
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