From 347a619b44565a215494b35ec521bc4c0cfbbf80 Mon Sep 17 00:00:00 2001 From: Roman Gershman Date: Sun, 25 Sep 2022 07:17:35 +0300 Subject: [PATCH] chore(redis): remove noisy warnings. --- src/redis/lua/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/redis/lua/CMakeLists.txt b/src/redis/lua/CMakeLists.txt index 18561caea..d29a6cde6 100644 --- a/src/redis/lua/CMakeLists.txt +++ b/src/redis/lua/CMakeLists.txt @@ -6,6 +6,7 @@ add_library(lua_modules STATIC ) target_compile_options(lua_modules PRIVATE - -Wno-sign-compare -Wno-misleading-indentation -Wno-implicit-fallthrough -Wno-undefined-inline) + -Wno-sign-compare -Wno-misleading-indentation -Wno-implicit-fallthrough -Wno-undefined-inline + -Wno-stringop-overflow) target_link_libraries(lua_modules TRDP::lua)