diff --git a/src/apps/terminal/TermPos.h b/src/apps/terminal/TermPos.h index e2bc18c6ed..1a127e5c0a 100644 --- a/src/apps/terminal/TermPos.h +++ b/src/apps/terminal/TermPos.h @@ -15,7 +15,6 @@ public: inline TermPos() : x(0), y(0) { } inline TermPos(int32 x, int32 y) : x(x), y(y) { } - inline TermPos(const TermPos& other) : x(other.x), y(other.y) { } inline void SetTo(int32 x, int32 y) { @@ -52,13 +51,6 @@ public: { return !(*this <= other); } - - inline TermPos& operator=(const TermPos& other) - { - x = other.x; - y = other.y; - return *this; - } };