Fixed -Wshadow warning by renaming variables

This commit is contained in:
Sean McBride 2025-07-11 11:30:23 -04:00
parent bd0cd1d67b
commit 430e35fbd1
No known key found for this signature in database

View File

@ -638,7 +638,7 @@ struct pminmax_impl<PropagateNumbers, false> {
} }
}; };
#define EIGEN_BINARY_OP_NAN_PROPAGATION(Type, Func) [](const Type& a, const Type& b) { return Func(a, b); } #define EIGEN_BINARY_OP_NAN_PROPAGATION(Type, Func) [](const Type& aa, const Type& bb) { return Func(aa, bb); }
/** \internal \returns the min of \a a and \a b (coeff-wise). /** \internal \returns the min of \a a and \a b (coeff-wise).
If \a a or \b b is NaN, the return value is implementation defined. */ If \a a or \b b is NaN, the return value is implementation defined. */