mirror of
https://github.com/oatpp/oatpp.git
synced 2025-03-31 18:30:22 +08:00
Fix Clang compiler warning (-Wconditional-uninitialized)
Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
This commit is contained in:
parent
82beea0071
commit
244a86118d
@ -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")
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user