mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
Fix the following warning: "comparison between signed and unsigned integer expressions"
This commit is contained in:
parent
cf259ce590
commit
9fd465ea2b
@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
template<typename MatrixType>
|
||||
void check_dimension(const MatrixType& ab, const unsigned int rows, const unsigned int cols)
|
||||
void check_dimension(const MatrixType& ab, const int rows, const int cols)
|
||||
{
|
||||
VERIFY_IS_EQUAL(ab.rows(), rows);
|
||||
VERIFY_IS_EQUAL(ab.cols(), cols);
|
||||
|
Loading…
Reference in New Issue
Block a user