From 730d9e4d2ed7ddda9607a371797f8fe1cf452eb1 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 18 Apr 2025 15:12:23 +0200 Subject: [PATCH] Fix strict warnings in extern/ after Audaspace update Done for Clang compiler. GCC might need the same fix, but would need to be tested separately. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a23e7536254..5cc11a7b6c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2401,6 +2401,7 @@ elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") CXX_WARN_NO_IMPLICIT_CONST_INT_FLOAT_CONVERSION -Wno-implicit-const-int-float-conversion CXX_WARN_NO_UNDEF -Wno-undef CXX_WARN_NO_UNDEF_PREFIX -Wno-undef-prefix + CXX_WARN_NO_INCONSISTENT_MISSING_OVERRIDE -Wno-inconsistent-missing-override ) elseif(CMAKE_C_COMPILER_ID STREQUAL "Intel")