mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-23 21:34:30 +08:00
Fixed -Wshadow warning by renaming variables
This commit is contained in:
parent
bd0cd1d67b
commit
430e35fbd1
@ -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. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user