mirror of https://github.com/AxioDL/jbus.git
Listener: Remove unnecessary bind() within start()
std::thread already handles execution of member functions out-of-the-box.
This commit is contained in:
parent
dff87c2c6a
commit
be121a1bb9
|
@ -80,7 +80,7 @@ void Listener::listenerProc() {
|
|||
void Listener::start() {
|
||||
stop();
|
||||
m_running = true;
|
||||
m_listenerThread = std::thread(std::bind(&Listener::listenerProc, this));
|
||||
m_listenerThread = std::thread(&Listener::listenerProc, this);
|
||||
}
|
||||
|
||||
void Listener::stop() {
|
||||
|
|
Loading…
Reference in New Issue