From b55879116f3309e7ed92e35144f2ab973fb04651 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 10 Oct 2025 13:20:18 +0300 Subject: [PATCH] disable msvc warning C4459 --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5e8fc44b..dd87247a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -92,6 +92,7 @@ target_compile_options( # mismatch /wd4100 # unreferenced formal parameter /wd4458 # declaration of 'var' hides class member + /wd4459 # declaration of 'var' hides global declaration /wd4101 # 'var': unreferenced local variable /wd4388 # 'token' : signed/unsigned mismatch /wd4018 # '>': signed/unsigned mismatch