mirror of
https://github.com/oatpp/oatpp.git
synced 2025-03-31 18:30:22 +08:00
Merge pull request #826 from fhuberts/fix-Wlogical-op
Fix compiler warnings (-Wlogical-op)
This commit is contained in:
commit
72807d83ee
@ -160,7 +160,7 @@ if (CMAKE_CXX_COMPILER_ID MATCHES GNU)
|
||||
#add_compiler_flags(5.1 "-Wsuggest-final-types")
|
||||
|
||||
add_compiler_flags(6.1 "-Wduplicated-cond")
|
||||
#add_compiler_flags(6.1 "-Wlogical-op")
|
||||
add_compiler_flags(6.1 "-Wlogical-op")
|
||||
add_compiler_flags(6.1 "-Wnull-dereference")
|
||||
|
||||
add_compiler_flags(7.1 "-Wduplicated-branches")
|
||||
|
@ -76,6 +76,11 @@ Connection::~Connection(){
|
||||
close();
|
||||
}
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wlogical-op"
|
||||
#endif
|
||||
|
||||
v_io_size Connection::write(const void *buff, v_buff_size count, async::Action& action){
|
||||
|
||||
#if defined(WIN32) || defined(_WIN32)
|
||||
@ -115,7 +120,10 @@ v_io_size Connection::write(const void *buff, v_buff_size count, async::Action&
|
||||
|
||||
if(result < 0) {
|
||||
auto e = errno;
|
||||
if(e == EAGAIN || e == EWOULDBLOCK){
|
||||
|
||||
bool retry = ((e == EAGAIN) || (e == EWOULDBLOCK));
|
||||
|
||||
if(retry){
|
||||
if(m_mode == data::stream::ASYNCHRONOUS) {
|
||||
action = oatpp::async::Action::createIOWaitAction(m_handle, oatpp::async::Action::IOEventType::IO_EVENT_WRITE);
|
||||
}
|
||||
@ -139,6 +147,15 @@ v_io_size Connection::write(const void *buff, v_buff_size count, async::Action&
|
||||
|
||||
}
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wlogical-op"
|
||||
#endif
|
||||
|
||||
v_io_size Connection::read(void *buff, v_buff_size count, async::Action& action){
|
||||
|
||||
#if defined(WIN32) || defined(_WIN32)
|
||||
@ -173,7 +190,10 @@ v_io_size Connection::read(void *buff, v_buff_size count, async::Action& action)
|
||||
|
||||
if(result < 0) {
|
||||
auto e = errno;
|
||||
if(e == EAGAIN || e == EWOULDBLOCK){
|
||||
|
||||
bool retry = ((e == EAGAIN) || (e == EWOULDBLOCK));
|
||||
|
||||
if(retry){
|
||||
if(m_mode == data::stream::ASYNCHRONOUS) {
|
||||
action = oatpp::async::Action::createIOWaitAction(m_handle, oatpp::async::Action::IOEventType::IO_EVENT_READ);
|
||||
}
|
||||
@ -197,6 +217,10 @@ v_io_size Connection::read(void *buff, v_buff_size count, async::Action& action)
|
||||
|
||||
}
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
#if defined(WIN32) || defined(_WIN32)
|
||||
void Connection::setStreamIOMode(oatpp::data::stream::IOMode ioMode) {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user