From 4c1cddbb39b8c4f535116419a029ac93b858e86d Mon Sep 17 00:00:00 2001 From: duckdoom5 Date: Mon, 3 Mar 2025 18:09:58 +0100 Subject: [PATCH] Fix other test compile bug It's kinda weird to call it pure virtual and then implement it anyway no? --- tests/dotnet/Common/Common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/dotnet/Common/Common.h b/tests/dotnet/Common/Common.h index 56e9c33e..2bb28256 100644 --- a/tests/dotnet/Common/Common.h +++ b/tests/dotnet/Common/Common.h @@ -790,13 +790,13 @@ public: virtual ~PureDtor() = 0; }; -class PureImplementedDtor +class VirtualImplementedDtor { public: - virtual ~PureImplementedDtor() = 0; + virtual ~VirtualImplementedDtor(); }; -PureImplementedDtor::~PureImplementedDtor() +inline VirtualImplementedDtor::~VirtualImplementedDtor() { }