mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Use llvm::Twine across C++ Command structure.
This commit is contained in:
@@ -14,6 +14,6 @@ using namespace frc;
|
||||
*
|
||||
* @param name The name for this command
|
||||
*/
|
||||
InstantCommand::InstantCommand(const std::string& name) : Command(name) {}
|
||||
InstantCommand::InstantCommand(const llvm::Twine& name) : Command(name) {}
|
||||
|
||||
bool InstantCommand::IsFinished() { return true; }
|
||||
|
||||
Reference in New Issue
Block a user