From a3ff5976a11a7f615ee222ff9ae99a8b5630fa8a Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 25 Oct 2022 11:59:43 -0700 Subject: [PATCH] Fix compiler error from eigen libs --- QGCCommon.pri | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/QGCCommon.pri b/QGCCommon.pri index 3c69fad..2679aab 100644 --- a/QGCCommon.pri +++ b/QGCCommon.pri @@ -106,7 +106,8 @@ linux { DEFINES += QGC_GST_MICROHARD_ENABLED QMAKE_CXXFLAGS += -fvisibility=hidden QMAKE_CXXFLAGS_WARN_ON += -Werror \ - -Wno-unused-parameter # gst-plugins-good + -Wno-unused-parameter \ # gst-plugins-good + -Wno-deprecated-declarations # eigen } else { error("Unsupported Mac toolchain, only 64-bit LLVM+clang is supported") }