diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-01 12:30:59 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-01 12:30:59 +0200 |
| commit | eb11e1d94a976fafa594c25e387a130bef3c1173 (patch) | |
| tree | 48db287070091f8255e41f7a07fbcfde591766ac /modules/core/c++ | |
| parent | e69e3cb018619b51f35004284056af383eab0bd7 (diff) | |
| download | forstio-forstio-eb11e1d94a976fafa594c25e387a130bef3c1173.tar.gz | |
Fixing deconstructor issues
Diffstat (limited to 'modules/core/c++')
| -rw-r--r-- | modules/core/c++/buffer.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/c++/buffer.hpp b/modules/core/c++/buffer.hpp index 8b62131..e551de3 100644 --- a/modules/core/c++/buffer.hpp +++ b/modules/core/c++/buffer.hpp @@ -15,7 +15,7 @@ namespace saw { */ class buffer { public: - ~buffer() = default; + virtual ~buffer() = default; virtual size_t read_position() const = 0; virtual size_t read_composite_length() const = 0; |
