From f5fd38917d0059dcce12c7f32e189042fa912c40 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Thu, 15 May 2025 16:43:51 +0200 Subject: [PATCH] core: Disable unused variable warning from eigen --- src/core/model/matrix-array.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/model/matrix-array.cc b/src/core/model/matrix-array.cc index 8862bb89b..0d8da1961 100644 --- a/src/core/model/matrix-array.cc +++ b/src/core/model/matrix-array.cc @@ -13,6 +13,7 @@ #if defined(__GNUC__) && !defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wclass-memaccess" +#pragma GCC diagnostic ignored "-Wunused-variable" #endif #include