From 7897e2d299d37cbaa8b19896d1db69d6fcb47e8c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 30 Nov 2023 15:02:52 +1100 Subject: [PATCH] Cleanup: remove warning suppression which is no longer needed Since updating fmtlib these aren't needed. --- extern/fmtlib/CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/extern/fmtlib/CMakeLists.txt b/extern/fmtlib/CMakeLists.txt index cd0822b323d..64a99cbb935 100644 --- a/extern/fmtlib/CMakeLists.txt +++ b/extern/fmtlib/CMakeLists.txt @@ -2,13 +2,6 @@ # # SPDX-License-Identifier: GPL-2.0-or-later -if(CMAKE_COMPILER_IS_GNUCC) - # NOTE: Resolved up-stream, quiet noisy compiler warnings for now. - add_cxx_flag("-Wno-uninitialized") - # Needed as build-type options may be added after the CXX flag added above. - remove_cxx_flag("-Wuninitialized") -endif() - set(INC include )