From 2a8437942f612fc34b4ffed0304cf200ca19b6d1 Mon Sep 17 00:00:00 2001 From: David Boehme Date: Wed, 5 Nov 2025 13:26:13 -0800 Subject: [PATCH] Fix missing virtual destructor in Python bindings --- src/interface/python/types.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interface/python/types.hpp b/src/interface/python/types.hpp index 634c315..b0c0f89 100644 --- a/src/interface/python/types.hpp +++ b/src/interface/python/types.hpp @@ -54,6 +54,7 @@ template struct DataContainer { T m_v; DataContainer(T val) : m_v(val) {} + virtual ~DataContainer() {} virtual T to_python() const { return m_v; }