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 WebServerClientTest {
public:
using BufferPool = wpi::uv::SimpleBufferPool<4>;
using LoopFunc = std::function<void(void)>;
using LoopFunc = std::function<void()>;
using UvExecFunc = wpi::uv::AsyncFunction<void(LoopFunc)>;
explicit WebServerClientTest(wpi::uv::Loop& loop) : m_loop(loop) {}