Fix Clang compiler warning (-Wconditional-uninitialized)

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
This commit is contained in:
Ferry Huberts 2023-09-02 21:17:50 +02:00
parent 82beea0071
commit 244a86118d
2 changed files with 1 additions and 2 deletions

View File

@ -286,7 +286,6 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compiler_flags(10 "-Wno-c++14-extensions")
add_compiler_flags(10 "-Wno-c++98-compat")
add_compiler_flags(10 "-Wno-c++98-compat-pedantic")
add_compiler_flags(10 "-Wno-conditional-uninitialized")
add_compiler_flags(10 "-Wno-covered-switch-default")
add_compiler_flags(10 "-Wno-delete-non-abstract-non-virtual-dtor")
add_compiler_flags(10 "-Wno-deprecated-copy-dtor")

View File

@ -240,7 +240,7 @@ oatpp::v_io_handle ConnectionProvider::instantiateServer(){
oatpp::v_io_handle ConnectionProvider::instantiateServer(){
oatpp::v_io_handle serverHandle;
oatpp::v_io_handle serverHandle = -1;
v_int32 ret;
int yes = 1;