Minor formatting fix

This commit is contained in:
Stephen Seo 2019-08-29 11:20:36 +09:00
parent d027b1703a
commit 6aa2e8aa51

View file

@ -93,15 +93,17 @@ void UDPC::ConnectionData::cleanupSentPkts() {
} }
} }
UDPC::Context::Context(bool isThreaded) UDPC::Context::Context(bool isThreaded) :
: _contextIdentifier(UDPC_CONTEXT_IDENTIFIER), flags(), _contextIdentifier(UDPC_CONTEXT_IDENTIFIER),
isAcceptNewConnections(true), protocolID(UDPC_DEFAULT_PROTOCOL_ID), flags(),
isAcceptNewConnections(true),
protocolID(UDPC_DEFAULT_PROTOCOL_ID),
#ifndef NDEBUG #ifndef NDEBUG
loggingType(INFO), loggingType(INFO),
#else #else
loggingType(WARNING), loggingType(WARNING),
#endif #endif
rng_engine() rng_engine()
{ {
if(isThreaded) { if(isThreaded) {
flags.set(0); flags.set(0);