From aeee31736841d8c6d81ecf67df883059c3690717 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 11 Dec 2021 09:15:38 -0800 Subject: [PATCH] Vulkan: Ignore VMA nullability warnings. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ad5d14dad..16bfa05cb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -307,6 +307,7 @@ if(NOT MSVC) endif() if(CLANG) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-switch -Wno-uninitialized") + add_definitions(-Wno-nullability-completeness) endif() if(USE_ASAN)