From c1bde8560ec28d8b710b8762900d2acbf080ae52 Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Sun, 28 Mar 2021 03:03:29 -0700 Subject: [PATCH] Disable sign conversion warnings just tired of them, I know what I'm doing --- tools/CompilerWarnings.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/CompilerWarnings.cmake b/tools/CompilerWarnings.cmake index 83712a0..0ca02cb 100644 --- a/tools/CompilerWarnings.cmake +++ b/tools/CompilerWarnings.cmake @@ -54,7 +54,7 @@ function(set_project_warnings project_name) # function -Wpedantic # warn if non-standard C++ is used -Wconversion # warn on type conversions that may lose data - -Wsign-conversion # warn on sign conversions + #-Wsign-conversion # warn on sign conversions -Wnull-dereference # warn if a null dereference is detected -Wdouble-promotion # warn if float is implicit promoted to double -Wformat=2 # warn on security issues around functions that format output