Use llvm::Twine across C++ Command structure.

This commit is contained in:
Peter Johnson
2017-12-01 20:50:35 -08:00
parent 001dedf3b2
commit ab137abab5
22 changed files with 52 additions and 45 deletions

View File

@@ -8,9 +8,10 @@
#pragma once
#include <list>
#include <string>
#include <vector>
#include <llvm/Twine.h>
#include "Commands/Command.h"
#include "Commands/CommandGroupEntry.h"
@@ -36,7 +37,7 @@ namespace frc {
class CommandGroup : public Command {
public:
CommandGroup() = default;
explicit CommandGroup(const std::string& name);
explicit CommandGroup(const llvm::Twine& name);
virtual ~CommandGroup() = default;
void AddSequential(Command* command);