fix some legitimate shadow warnings

This commit is contained in:
Gael Guennebaud
2015-06-09 15:17:58 +02:00
parent f9350e70eb
commit d4c574707e
3 changed files with 11 additions and 11 deletions

View File

@@ -471,7 +471,7 @@ namespace Eigen
r = p;
for (DenseIndex k=1; k<=static_cast<DenseIndex>(n); ++k)
{
for (DenseIndex j=p; j>=0; --j) N_(k,j) *= r;
for (j=p; j>=0; --j) N_(k,j) *= r;
r *= p-k;
}
}