Merge "Fixed the Command-Based Robot template [artf2550]"

This commit is contained in:
Jonathan Leitschuh (WPI)
2014-07-22 11:00:46 -07:00
committed by Gerrit Code Review
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