Added default constructor to Tape to fix compilation issues

This commit is contained in:
Egor 2024-10-21 11:12:24 +03:00
parent 363778019e
commit 967a208e4a

View file

@ -19,6 +19,7 @@ public:
Tape(Tape &&) = default;
Tape &operator=(const Tape &) = default;
Tape &operator=(Tape &&) = default;
Tape() = default;
virtual ~Tape() = default;
/**