Fixed the Command-Based Robot template [artf2550]

Change-Id: I49361a70fd19d59fbeb9e22a8f65de875fa5a04a
This commit is contained in:
thomasclark
2014-07-22 13:57:45 -04:00
parent ae8d22b0f2
commit fe12394c93
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
ExampleSubsystem* CommandBase::examplesubsystem = NULL;
OI* CommandBase::oi = NULL;
CommandBase::CommandBase(std::string name) :
CommandBase::CommandBase(char const *name) :
Command(name)
{
}

View File

@@ -14,7 +14,7 @@
class CommandBase: public Command
{
public:
CommandBase(std::string name);
CommandBase(char const *name);
CommandBase();
static void init();
// Create a single static instance of all of your subsystems