chore(redis): remove noisy warnings.

This commit is contained in:
Roman Gershman 2022-09-25 07:17:35 +03:00
parent ca776119f0
commit 347a619b44
1 changed files with 2 additions and 1 deletions

View File

@ -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)