From 9afc068fad68b6ed2581d542d94b88c6deed8ff5 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Mon, 4 Nov 2024 17:30:22 +0100 Subject: [PATCH] cmake: disable clang c23-extensions warnings --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef52a5796..fa4f4bd08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -85,6 +85,7 @@ if(CMAKE_C_COMPILER_ID MATCHES "Clang") add_compile_options( -Wshorten-64-to-32 -Wno-gnu-zero-variadic-macro-arguments + -Wno-c2x-extensions ) endif()