Added default constructor to Tape to fix compilation issues
This commit is contained in:
parent
363778019e
commit
967a208e4a
1 changed files with 1 additions and 0 deletions
|
@ -19,6 +19,7 @@ public:
|
||||||
Tape(Tape &&) = default;
|
Tape(Tape &&) = default;
|
||||||
Tape &operator=(const Tape &) = default;
|
Tape &operator=(const Tape &) = default;
|
||||||
Tape &operator=(Tape &&) = default;
|
Tape &operator=(Tape &&) = default;
|
||||||
|
Tape() = default;
|
||||||
virtual ~Tape() = default;
|
virtual ~Tape() = default;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue