Cleanup usages of std::function<void(void)> (#5864)

This commit is contained in:
Ryan Blue
2023-11-03 21:22:47 -04:00
committed by GitHub
parent d06fa633d5
commit 33e0089afb
7 changed files with 7 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ class HALSimWSClientConnection;
class HALSimWS : public std::enable_shared_from_this<HALSimWS> {
public:
using LoopFunc = std::function<void(void)>;
using LoopFunc = std::function<void()>;
using UvExecFunc = wpi::uv::Async<LoopFunc>;
HALSimWS(wpi::uv::Loop& loop, ProviderContainer& providers,