From 6c0fd3204c0e0c03b6205f9da1e694fe9db76196 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 7 Jan 2026 11:44:41 +0100 Subject: [PATCH] [clang,warn] disable -Wimplicit-void-ptr-cast Since this is a C project casts from and to void* are used to type convert. Do not warn about this. --- cmake/CommonCompilerFlags.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/CommonCompilerFlags.cmake b/cmake/CommonCompilerFlags.cmake index 1031fef4c..59fc03e29 100644 --- a/cmake/CommonCompilerFlags.cmake +++ b/cmake/CommonCompilerFlags.cmake @@ -22,6 +22,7 @@ if(ENABLE_WARNING_VERBOSE) -Wno-covered-switch-default -Wno-disabled-macro-expansion -Wno-used-but-marked-unused + -Wno-implicit-void-ptr-cast ) endif() endif()