diff --git a/alib2common/src/object/Object.cpp b/alib2common/src/object/Object.cpp index ad64be67b28ec83ca91527fe56c7c241a45cd84c..96dabc830f909e2ce2a7a16cc5660319c5cec5af 100644 --- a/alib2common/src/object/Object.cpp +++ b/alib2common/src/object/Object.cpp @@ -19,12 +19,6 @@ void Object::inc ( ) { Object::Object ( int number ) : Object ( object::AnyObject < int > ( number ) ) { } -Object::Object ( int number1, int number2 ) : Object ( Object ( number1 ), Object ( number2 ) ) { -} - -Object::Object ( Object object1, Object object2 ) : Object ( object::AnyObject < ext::pair < Object, Object > > { ext::make_pair ( std::move ( object1 ), std::move ( object2 ) ) } ) { -} - Object::Object ( char character ) : Object ( object::AnyObject < char > ( character ) ) { } diff --git a/alib2common/src/object/Object.h b/alib2common/src/object/Object.h index 405efa4ccd10d23f8c6e8d77773afcf46f98b249..93c91db8fdc0b08ddac1ee7f609585c6871cdb7b 100644 --- a/alib2common/src/object/Object.h +++ b/alib2common/src/object/Object.h @@ -33,9 +33,7 @@ class Object { } public: - explicit Object ( Object label1, Object label2 ); explicit Object ( int number ); - explicit Object ( int number1, int number2 ); explicit Object ( char character ); explicit Object ( std::string string ); explicit Object ( const char * string );