Skip to content

Commit

Permalink
Merge branch 'ScheduledCommand-decorator' of https://github.com/narms…
Browse files Browse the repository at this point in the history
…tro2020/allwpilib into ScheduledCommand-decorator
  • Loading branch information
narmstro2020 committed Oct 23, 2024
2 parents 71a038c + 49c52c0 commit 69b8809
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ CommandPtr CommandPtr::AsProxy() && {
CommandPtr CommandPtr::Fork(CommandPtr&& other) && {
AssertValid();
std::vector<Command*> vec{m_ptr.get(), other.get()};
m_ptr = make_unique<ScheduleCommand>(std::span<Command *>(vec));
m_ptr = make_unique<ScheduleCommand>(std::span<Command*>(vec));
return std::move(*this);
}

Expand Down

0 comments on commit 69b8809

Please sign in to comment.