mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
erm.. use EIGEN_ONLY_USED_FOR_DEBUG() as it already exists.
This commit is contained in:
@@ -214,9 +214,7 @@ template<typename Derived> class DenseBase
|
||||
*/
|
||||
void resize(int size)
|
||||
{
|
||||
#ifdef EIGEN_NO_DEBUG
|
||||
EIGEN_ARG_UNUSED(size);
|
||||
#endif
|
||||
EIGEN_ONLY_USED_FOR_DEBUG(size);
|
||||
ei_assert(size == this->size()
|
||||
&& "DenseBase::resize() does not actually allow to resize.");
|
||||
}
|
||||
@@ -226,10 +224,8 @@ template<typename Derived> class DenseBase
|
||||
*/
|
||||
void resize(int rows, int cols)
|
||||
{
|
||||
#ifdef EIGEN_NO_DEBUG
|
||||
EIGEN_ARG_UNUSED(rows);
|
||||
EIGEN_ARG_UNUSED(cols);
|
||||
#endif
|
||||
EIGEN_ONLY_USED_FOR_DEBUG(rows);
|
||||
EIGEN_ONLY_USED_FOR_DEBUG(cols);
|
||||
ei_assert(rows == this->rows() && cols == this->cols()
|
||||
&& "DenseBase::resize() does not actually allow to resize.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user