From 2d852c4495d5352ad00219b4a029a598fd3e0820 Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 26 Jul 2022 06:53:20 +0200 Subject: [PATCH] Removed useless warnings inconsistent-missing-override --- cmake/Modules/CompilerOptions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/CompilerOptions.cmake b/cmake/Modules/CompilerOptions.cmake index 0ee079017..db0610599 100644 --- a/cmake/Modules/CompilerOptions.cmake +++ b/cmake/Modules/CompilerOptions.cmake @@ -19,7 +19,7 @@ if(WIN32) endif() if(NOT MSVC) - add_compile_options(-Wall -Wextra -Wvla -Woverloaded-virtual -ffast-math -fno-finite-math-only -ftree-vectorize) + add_compile_options(-Wall -Wextra -Wvla -Woverloaded-virtual -Wno-inconsistent-missing-override -ffast-math -fno-finite-math-only -ftree-vectorize) endif() if (SANITIZE_ADDRESS)