From f3154500252f738ed76ca161d858bf548b19d7c1 Mon Sep 17 00:00:00 2001 From: Narr the Reg <5944268+german77@users.noreply.github.com> Date: Thu, 21 May 2026 00:46:04 -0600 Subject: [PATCH] ControlBase: Move dtor to cpp --- include/euiControlBase.h | 2 +- src/euiControlBase.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/euiControlBase.h b/include/euiControlBase.h index 762c6e3..475a174 100644 --- a/include/euiControlBase.h +++ b/include/euiControlBase.h @@ -12,7 +12,7 @@ class ControlBase { NN_RUNTIME_TYPEINFO_BASE(); ControlBase(); - virtual ~ControlBase() = default; + virtual ~ControlBase(); virtual void Update(float); diff --git a/src/euiControlBase.cpp b/src/euiControlBase.cpp index 41a0877..4a18069 100644 --- a/src/euiControlBase.cpp +++ b/src/euiControlBase.cpp @@ -4,6 +4,8 @@ namespace eui { ControlBase::ControlBase() = default; +ControlBase::~ControlBase() = default; + void ControlBase::Update(float) {} } // namespace eui