CLI2: Removed unused constructors

This commit is contained in:
Paul Beckingham 2015-06-20 09:23:36 -07:00
parent b62896e67c
commit d6eae96689
2 changed files with 0 additions and 18 deletions

View file

@ -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 ()
{

View file

@ -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&);