From 967a208e4a528a6e0e9544dc38101df33088f817 Mon Sep 17 00:00:00 2001 From: erius Date: Mon, 21 Oct 2024 11:12:24 +0300 Subject: [PATCH] Added default constructor to Tape to fix compilation issues --- include/tape.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/tape.h b/include/tape.h index 55b7133..ba68c5c 100644 --- a/include/tape.h +++ b/include/tape.h @@ -19,6 +19,7 @@ public: Tape(Tape &&) = default; Tape &operator=(const Tape &) = default; Tape &operator=(Tape &&) = default; + Tape() = default; virtual ~Tape() = default; /**