From e28cda9a3521373e576aff387eb9cb3244956116 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Wed, 4 Oct 2023 12:05:06 -0400 Subject: [PATCH] Remove -Wnonnull-compare, it's included in -Wall --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8828ad2..f94ecb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -249,9 +249,8 @@ set_target_properties( target_compile_options( cpptrace PRIVATE - # -Wshadow $<$>:-Wall -Wextra -Werror=return-type -Wundef> - $<$:-Wuseless-cast -Wnonnull-compare> + $<$:-Wuseless-cast> $<$:/W4 /WX /permissive-> )