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

@@ -9,13 +9,15 @@
#include <string>
#include <llvm/Twine.h>
#include "Commands/InstantCommand.h"
namespace frc {
class PrintCommand : public InstantCommand {
public:
explicit PrintCommand(const std::string& message);
explicit PrintCommand(const llvm::Twine& message);
virtual ~PrintCommand() = default;
protected: