From 30ad00fb7f92ce86e211222cbe5bd9c5c9b5aa47 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 22 Jun 2015 10:18:43 -0400 Subject: [PATCH] CLI2: Removed unused default constructor A::A --- src/CLI2.cpp | 6 ------ src/CLI2.h | 1 - 2 files changed, 7 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 10022f5c9..2837aceb3 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -43,12 +43,6 @@ int CLI2::minimumMatchLength = 3; // Alias expansion limit. Any more indicates some kind of error. static int safetyValveDefault = 10; -//////////////////////////////////////////////////////////////////////////////// -A2::A2 () -: _lextype (Lexer::Type::word) -{ -} - //////////////////////////////////////////////////////////////////////////////// A2::A2 (const std::string& raw, Lexer::Type lextype) { diff --git a/src/CLI2.h b/src/CLI2.h index 3678a1771..901ae0cd0 100644 --- a/src/CLI2.h +++ b/src/CLI2.h @@ -36,7 +36,6 @@ class A2 { public: - A2 (); A2 (const std::string&, Lexer::Type); ~A2 (); A2 (const A2&);