From 377259ffa02baff33ac8717e1e17bca652580747 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 29 Mar 2024 18:57:43 -0700 Subject: [PATCH] Unsuppress -Wmaybe-uninitialized I don't see the warning anymore locally --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5afe20c..bac11f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,8 +33,7 @@ option(USE_SIMD_FALLBACK include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/third_party/valgrind) if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - add_compile_options(-Wno-maybe-uninitialized - $<$:-Wno-invalid-offsetof>) + add_compile_options($<$:-Wno-invalid-offsetof>) endif() if(APPLE)