mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Remove trailing semicolon from EIGEN_UNUSED_VARIABLE macro
libeigen/eigen!2301 Closes #3007 Co-authored-by: Pavel Guzenfeld <67074795+PavelGuzenfeld@users.noreply.github.com>
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
e0b8498eef
commit
a0e30732a7
@@ -328,7 +328,7 @@ void test_matrix_inverse(size_t num_elements, const Input& in, Output& out) {
|
||||
template <typename DataType, typename Input, typename Output>
|
||||
void test_numeric_limits(const Input& in, Output& out) {
|
||||
auto operation = [](const typename DataType::Scalar* in, typename DataType::Scalar* out) {
|
||||
EIGEN_UNUSED_VARIABLE(in)
|
||||
EIGEN_UNUSED_VARIABLE(in);
|
||||
out[0] = numext::numeric_limits<float>::epsilon();
|
||||
out[1] = (numext::numeric_limits<float>::max)();
|
||||
out[2] = (numext::numeric_limits<float>::min)();
|
||||
|
||||
Reference in New Issue
Block a user