[cmd2] Flatten wpi::cmd::cmd to wpi::cmd (#8764)

Fixes #8763
This commit is contained in:
sciencewhiz
2026-04-13 21:48:13 -07:00
committed by GitHub
parent f89cf297e4
commit 613c86d1d7
36 changed files with 185 additions and 204 deletions

View File

@@ -15,7 +15,7 @@ TEST_F(InstantCommandTest, InstantCommandSchedule) {
int counter = 0;
auto command = cmd::RunOnce([&counter] { counter++; });
auto command = RunOnce([&counter] { counter++; });
scheduler.Schedule(command);
scheduler.Run();