Fix compiler warnings (-Wswitch-default)

Missed this one because it's in Windows code.

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
This commit is contained in:
Ferry Huberts 2023-08-02 20:46:08 +02:00
parent a6fbc026d5
commit d067e4ce9b

View File

@ -217,6 +217,8 @@ void Connection::setStreamIOMode(oatpp::data::stream::IOMode ioMode) {
}
m_mode = data::stream::ASYNCHRONOUS;
break;
default:
break;
}
}