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

avoid signed/unsigned warning

[[Imported from SVN: r5667]]
parent 8d144103
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ public: ...@@ -50,7 +50,7 @@ public:
Dune::FieldMatrix<double,size,size>& matrix) const Dune::FieldMatrix<double,size,size>& matrix) const
{ {
matrix = 0; matrix = 0;
for (int i=0; i<coefficients_.size(); i++) for (size_t i=0; i<coefficients_.size(); i++)
matrix.axpy(weights_[i], TargetSpace::secondDerivativeOfDistanceSquaredWRTSecondArgument(coefficients_[i], x)); matrix.axpy(weights_[i], TargetSpace::secondDerivativeOfDistanceSquaredWRTSecondArgument(coefficients_[i], x));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment