Skip to content

Commit

Permalink
[ci] Build fixes, too early for C++23 deducing this :')
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed May 26, 2024
1 parent a90fdd5 commit 42cb5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ossia/protocols/coap/coap_client_protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ void coap_client_protocol::set_device(device_base& dev)
m_device = &dev;

m_timer.set_delay(5ms);
m_timer.start([this](this auto&& self) -> void { m_client->poll(); });
m_timer.start([this] { m_client->poll(); });
}

void coap_client_protocol::stop()
Expand Down

0 comments on commit 42cb5b7

Please sign in to comment.