From d6eae966893807f24f271dc62a5f9d41e4053042 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 20 Jun 2015 09:23:36 -0700 Subject: [PATCH] CLI2: Removed unused constructors --- src/CLI2.cpp | 14 -------------- src/CLI2.h | 4 ---- 2 files changed, 18 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index cf0721820..0b265e2bc 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -56,20 +56,6 @@ A2::A2 (const std::string& raw, Lexer::Type lextype) attribute ("raw", raw); } -/* -//////////////////////////////////////////////////////////////////////////////// -A2::A2 (const int raw) -{ - attribute ("raw", raw); -} - -//////////////////////////////////////////////////////////////////////////////// -A2::A2 (const double raw) -{ - attribute ("raw", raw); -} -*/ - //////////////////////////////////////////////////////////////////////////////// A2::~A2 () { diff --git a/src/CLI2.h b/src/CLI2.h index 2c440a645..a1297b9e0 100644 --- a/src/CLI2.h +++ b/src/CLI2.h @@ -40,10 +40,6 @@ class A2 public: A2 (); A2 (const std::string&, Lexer::Type); -/* - A2 (const std::string&, const int); - A2 (const std::string&, const double); -*/ ~A2 (); A2 (const A2&); A2& operator= (const A2&);