Fix the following warning: "comparison between signed and unsigned integer expressions"

This commit is contained in:
Gael Guennebaud 2013-02-15 14:31:38 +01:00
parent cf259ce590
commit 9fd465ea2b

View File

@ -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);