From 1a17425fb55f42218755b9033464b72ef28a04f6 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Mon, 3 Jan 2022 03:21:12 -0700 Subject: [PATCH] Meta: Remove clang warnings with no violations At some point we probably needed these, but no code complains about them with the current state of the codebase. --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46903ac993c..e0247ea3662 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -198,11 +198,8 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang$") add_compile_options(-Wno-user-defined-literals) add_compile_options(-Wno-atomic-alignment) add_compile_options(-Wno-implicit-const-int-float-conversion) - add_compile_options(-Wno-null-pointer-subtraction) - add_compile_options(-Wno-unneeded-internal-declaration) add_compile_options(-Wno-unused-const-variable) add_compile_options(-Wno-unused-private-field) - add_compile_options(-fno-aligned-allocation) add_compile_options(-fconstexpr-steps=16777216) # Clang doesn't add compiler_rt to the search path when compiling with -nostdlib.