mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[commands] Unbreak build (#3438)
This commit is contained in:
@@ -15,6 +15,8 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <wpi/span.h>
|
||||
|
||||
#include "frc2/command/CommandGroupBase.h"
|
||||
#include "frc2/command/CommandHelper.h"
|
||||
|
||||
@@ -86,11 +88,12 @@ class SequentialCommandGroup
|
||||
|
||||
SequentialCommandGroup BeforeStarting(
|
||||
std::function<void()> toRun,
|
||||
wpi::ArrayRef<Subsystem*> requirements = {}) &&
|
||||
wpi::span<Subsystem* const> requirements = {}) &&
|
||||
override;
|
||||
|
||||
SequentialCommandGroup AndThen(std::function<void()> toRun,
|
||||
wpi::ArrayRef<Subsystem*> requirements = {}) &&
|
||||
SequentialCommandGroup AndThen(
|
||||
std::function<void()> toRun,
|
||||
wpi::span<Subsystem* const> requirements = {}) &&
|
||||
override;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user