fix unused variable warning

This commit is contained in:
Gael Guennebaud 2015-06-09 15:17:21 +02:00
parent 4aba24a1b2
commit f9350e70eb

View File

@ -292,6 +292,8 @@ template<typename Solver> void check_sparse_spd_solving(Solver& solver, int maxS
}
}
}
#else
EIGEN_UNUSED_VARIABLE(maxRealWorldSize);
#endif
}
@ -390,6 +392,8 @@ template<typename Solver> void check_sparse_square_solving(Solver& solver, int m
}
}
}
#else
EIGEN_UNUSED_VARIABLE(maxRealWorldSize);
#endif
}