From c410e2596c872ff86974c8db5f011ca8b9cf445c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 28 Apr 2022 11:40:52 +0200 Subject: [PATCH] Add some extra warnings --- CMake/CatchMiscFunctions.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMake/CatchMiscFunctions.cmake b/CMake/CatchMiscFunctions.cmake index 2bfbbe83..9db8af8e 100644 --- a/CMake/CatchMiscFunctions.cmake +++ b/CMake/CatchMiscFunctions.cmake @@ -46,6 +46,7 @@ function(add_warnings_to_targets targets) "-Wabsolute-value" "-Wall" "-Wcall-to-pure-virtual-from-ctor-dtor" + "-Wcast-align" "-Wcatch-value" "-Wdeprecated" "-Wdeprecated-register" @@ -60,12 +61,14 @@ function(add_warnings_to_targets targets) "-Wold-style-cast" "-Wparentheses" "-Wpedantic" + "-Wreorder" "-Wreturn-std-move" "-Wshadow" "-Wstrict-aliasing" "-Wsuggest-override" "-Wundef" "-Wunreachable-code" + "-Wunused" "-Wunused-function" "-Wunused-parameter" "-Wvla"