[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(WaitUntilCommandTest, WaitUntilCommandSchedule) {
bool finished = false;
auto command = cmd::WaitUntil([&finished] { return finished; });
auto command = WaitUntil([&finished] { return finished; });
scheduler.Schedule(command);
scheduler.Run();