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

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