From 4d58c3271c0500a1294237e4d099ed769a59f7c0 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 18 May 2026 13:13:47 +0100 Subject: [PATCH] build: remove -Wno-conditional-uninitialized from leveldb build --- cmake/leveldb.cmake | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmake/leveldb.cmake b/cmake/leveldb.cmake index cff8c61f96c..f69e386e660 100644 --- a/cmake/leveldb.cmake +++ b/cmake/leveldb.cmake @@ -84,9 +84,6 @@ if(MSVC) _CRT_NONSTDC_NO_WARNINGS ) else() - try_append_cxx_flags("-Wconditional-uninitialized" TARGET nowarn_leveldb_interface SKIP_LINK - IF_CHECK_PASSED "-Wno-conditional-uninitialized" - ) try_append_cxx_flags("-Wcovered-switch-default" TARGET nowarn_leveldb_interface SKIP_LINK IF_CHECK_PASSED "-Wno-covered-switch-default" )