diff --git a/terminalframebuffer.cpp b/terminalframebuffer.cpp index dd0d414..b8fde46 100644 --- a/terminalframebuffer.cpp +++ b/terminalframebuffer.cpp @@ -11,23 +11,6 @@ Cell::Cell() renditions() {} -Cell::Cell( const Cell &x ) - : contents( x.contents ), - fallback( x.fallback ), - width( x.width ), - renditions( x.renditions ) -{} - -Cell & Cell::operator=( const Cell &x ) -{ - contents = x.contents; - fallback = x.fallback; - width = x.width; - renditions = x.renditions; - - return *this; -} - Row::Row( size_t s_width ) : cells( s_width ) {} diff --git a/terminalframebuffer.hpp b/terminalframebuffer.hpp index f21a92e..827b791 100644 --- a/terminalframebuffer.hpp +++ b/terminalframebuffer.hpp @@ -17,9 +17,6 @@ namespace Terminal { Cell(); - Cell( const Cell & ); - Cell & operator=( const Cell & ); - void reset( void ); };