mirror of
https://github.com/AxioDL/jbus.git
synced 2025-07-03 03:35:52 +00:00
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…
x
Reference in New Issue
Block a user