Fix MSVC warning C4101
unreferenced local variable In this case: exceptions caught but never used. No need to give them a variable name.
This commit is contained in:
@@ -1156,7 +1156,7 @@ void BlockingTCPTransportCodec::sendThread()
|
||||
try {
|
||||
this->processWrite();
|
||||
continue;
|
||||
} catch (connection_closed_exception &cce) {
|
||||
} catch (connection_closed_exception &) {
|
||||
// noop
|
||||
} catch (std::exception &e) {
|
||||
PRINT_EXCEPTION(e);
|
||||
|
||||
Reference in New Issue
Block a user