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

Avoid a signed/unsigned warning

parent 19628896
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ public: ...@@ -118,7 +118,7 @@ public:
// Extract local coefficients // Extract local coefficients
std::vector<TargetSpace> localCoeff(numOfBaseFct); std::vector<TargetSpace> localCoeff(numOfBaseFct);
for (int i=0; i<numOfBaseFct; i++) for (decltype(numOfBaseFct) i=0; i<numOfBaseFct; i++)
#if DUNE_VERSION_LT(DUNE_FUNCTIONS,2,7) #if DUNE_VERSION_LT(DUNE_FUNCTIONS,2,7)
localCoeff[i] = coefficients_[localIndexSet.index(i)]; localCoeff[i] = coefficients_[localIndexSet.index(i)];
#else #else
......
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