Skip to content

Commit

Permalink
Merge pull request dealii#5537 from masterleinad/fix_wsign
Browse files Browse the repository at this point in the history
Fix Wsign-compare warning
  • Loading branch information
bangerth authored Nov 27, 2017
2 parents a1b99ce + 5dfb959 commit f8e7eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/lac/sparsity_tools.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ namespace SparsityTools

Assert ( numEdges != nullptr , ExcInternalError() );

for (unsigned int i=0; i<num_obj; ++i)
for (int i=0; i<num_obj; ++i)
numEdges[i] = graph->row_length(globalID[i])-1;
}

Expand Down

0 comments on commit f8e7eb8

Please sign in to comment.