Remove zmq context from thread parameter

This commit is contained in:
2020-05-06 15:40:20 +02:00
parent cd495ecc02
commit e5e9d4074f
2 changed files with 3 additions and 5 deletions
+2 -4
View File
@@ -28,9 +28,7 @@ LiveRecvModule::LiveRecvModule(
#endif
receiving_thread_ = thread(
&LiveRecvModule::receive_thread, this,
n_modules,
ctx_);
&LiveRecvModule::receive_thread, this, n_modules);
}
LiveRecvModule::~LiveRecvModule()
@@ -98,7 +96,7 @@ void LiveRecvModule::recv_single_module(
}
}
void LiveRecvModule::receive_thread(const size_t n_modules, void* ctx_)
void LiveRecvModule::receive_thread(const size_t n_modules)
{
try {