From 370df8e07fbebe8d2d887f127516473e8a65835b Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 14 Jun 2015 16:32:44 -0400 Subject: [PATCH] CLI2: Added A::A default ctor --- src/CLI2.cpp | 3 +-- src/CLI2.h | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 2557285fb..b3e470b1c 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -44,14 +44,13 @@ int CLI2::minimumMatchLength = 3; // Alias expansion limit. Any more indicates some kind of error. static int safetyValveDefault = 10; -/* //////////////////////////////////////////////////////////////////////////////// A2::A2 () : _name ("") , _lextype (Lexer::Type::word) { } -*/ + //////////////////////////////////////////////////////////////////////////////// A2::A2 (const std::string& name, const std::string& raw, Lexer::Type lextype) { diff --git a/src/CLI2.h b/src/CLI2.h index cc2b203df..1f244c8e7 100644 --- a/src/CLI2.h +++ b/src/CLI2.h @@ -38,9 +38,7 @@ class A2 { public: -/* A2 (); -*/ A2 (const std::string&, const std::string&, Lexer::Type); /* A2 (const std::string&, const int);