Skip to content

Commit

Permalink
Remove explicit qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Sep 15, 2023
1 parent 62d4918 commit 901b240
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class DeferredCommand : public CommandHelper<Command, DeferredCommand> {
* @param requirements The command requirements.
*
*/
explicit DeferredCommand(wpi::unique_function<Command*()> supplier,
std::span<Subsystem* const> requirements);
DeferredCommand(wpi::unique_function<Command*()> supplier,
std::span<Subsystem* const> requirements);

/**
* Creates a new DeferredCommand that runs the supplied command when
Expand All @@ -52,8 +52,8 @@ class DeferredCommand : public CommandHelper<Command, DeferredCommand> {
* @param requirements The command requirements.
*
*/
explicit DeferredCommand(wpi::unique_function<Command*()> supplier,
std::initializer_list<Subsystem*> requirements);
DeferredCommand(wpi::unique_function<Command*()> supplier,
std::initializer_list<Subsystem*> requirements);

/**
* Creates a new DeferredCommand that runs the supplied command when
Expand All @@ -66,8 +66,8 @@ class DeferredCommand : public CommandHelper<Command, DeferredCommand> {
* @param requirements The command requirements.
*
*/
explicit DeferredCommand(wpi::unique_function<CommandPtr()> supplier,
std::span<Subsystem* const> requirements);
DeferredCommand(wpi::unique_function<CommandPtr()> supplier,
std::span<Subsystem* const> requirements);

/**
* Creates a new DeferredCommand that runs the supplied command when
Expand All @@ -80,8 +80,8 @@ class DeferredCommand : public CommandHelper<Command, DeferredCommand> {
* @param requirements The command requirements.
*
*/
explicit DeferredCommand(wpi::unique_function<CommandPtr()> supplier,
std::initializer_list<Subsystem*> requirements);
DeferredCommand(wpi::unique_function<CommandPtr()> supplier,
std::initializer_list<Subsystem*> requirements);

DeferredCommand(DeferredCommand&& other) = default;

Expand Down

0 comments on commit 901b240

Please sign in to comment.