Browse Source

Fix other test compile bug

It's kinda weird to call it pure virtual and then implement it anyway no?
pull/1919/head
duckdoom5 4 months ago
parent
commit
4c1cddbb39
  1. 6
      tests/dotnet/Common/Common.h

6
tests/dotnet/Common/Common.h

@ -790,13 +790,13 @@ public:
virtual ~PureDtor() = 0; virtual ~PureDtor() = 0;
}; };
class PureImplementedDtor class VirtualImplementedDtor
{ {
public: public:
virtual ~PureImplementedDtor() = 0; virtual ~VirtualImplementedDtor();
}; };
PureImplementedDtor::~PureImplementedDtor() inline VirtualImplementedDtor::~VirtualImplementedDtor()
{ {
} }

Loading…
Cancel
Save