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() {
|
void Listener::start() {
|
||||||
stop();
|
stop();
|
||||||
m_running = true;
|
m_running = true;
|
||||||
m_listenerThread = std::thread(std::bind(&Listener::listenerProc, this));
|
m_listenerThread = std::thread(&Listener::listenerProc, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Listener::stop() {
|
void Listener::stop() {
|
||||||
|
|
Loading…
Reference in New Issue