introduce a new macro EIGEN_ARG_UNUSED(arg) and use it in some places to

silent some warnings (from clang)
This commit is contained in:
Thomas Capricelli
2010-05-21 02:05:25 +02:00
parent 742bbdfa57
commit c1d005e976
4 changed files with 18 additions and 2 deletions

View File

@@ -214,6 +214,9 @@ template<typename Derived> class DenseBase
*/
void resize(int size)
{
#ifdef EIGEN_NO_DEBUG
EIGEN_ARG_UNUSED(size);
#endif
ei_assert(size == this->size()
&& "DenseBase::resize() does not actually allow to resize.");
}
@@ -223,6 +226,10 @@ template<typename Derived> class DenseBase
*/
void resize(int rows, int cols)
{
#ifdef EIGEN_NO_DEBUG
EIGEN_ARG_UNUSED(rows);
EIGEN_ARG_UNUSED(cols);
#endif
ei_assert(rows == this->rows() && cols == this->cols()
&& "DenseBase::resize() does not actually allow to resize.");
}