From 4a30c443cb821b482311095111bda33ffaf9cbba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Omn=C3=A8s?= Date: Mon, 6 Jan 2025 14:54:50 +0100 Subject: [PATCH] Fix NonMovable class (#2555) --- src/ext/yuni/src/yuni/core/nonmovable.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ext/yuni/src/yuni/core/nonmovable.h b/src/ext/yuni/src/yuni/core/nonmovable.h index e9214e709f..c866e916ec 100644 --- a/src/ext/yuni/src/yuni/core/nonmovable.h +++ b/src/ext/yuni/src/yuni/core/nonmovable.h @@ -49,11 +49,12 @@ class YUNI_DECL NonMovable { protected: //! Default constructor - NonCopyable() + NonMovable() { } + //! Protected non-virtual destructor - ~NonCopyable() + ~NonMovable() { } };