CLI2: Added A::A default ctor

This commit is contained in:
Paul Beckingham 2015-06-14 16:32:44 -04:00
parent d1e7537e76
commit 370df8e07f
2 changed files with 1 additions and 4 deletions

View file

@ -44,14 +44,13 @@ int CLI2::minimumMatchLength = 3;
// Alias expansion limit. Any more indicates some kind of error. // Alias expansion limit. Any more indicates some kind of error.
static int safetyValveDefault = 10; static int safetyValveDefault = 10;
/*
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
A2::A2 () A2::A2 ()
: _name ("") : _name ("")
, _lextype (Lexer::Type::word) , _lextype (Lexer::Type::word)
{ {
} }
*/
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
A2::A2 (const std::string& name, const std::string& raw, Lexer::Type lextype) A2::A2 (const std::string& name, const std::string& raw, Lexer::Type lextype)
{ {

View file

@ -38,9 +38,7 @@
class A2 class A2
{ {
public: public:
/*
A2 (); A2 ();
*/
A2 (const std::string&, const std::string&, Lexer::Type); A2 (const std::string&, const std::string&, Lexer::Type);
/* /*
A2 (const std::string&, const int); A2 (const std::string&, const int);