Skip to content

Commit 4c1cddb

Browse files
committed
Fix other test compile bug
It's kinda weird to call it pure virtual and then implement it anyway no?
1 parent 6e56ead commit 4c1cddb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/dotnet/Common/Common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -790,13 +790,13 @@ class PureDtor
790790
virtual ~PureDtor() = 0;
791791
};
792792

793-
class PureImplementedDtor
793+
class VirtualImplementedDtor
794794
{
795795
public:
796-
virtual ~PureImplementedDtor() = 0;
796+
virtual ~VirtualImplementedDtor();
797797
};
798798

799-
PureImplementedDtor::~PureImplementedDtor()
799+
inline VirtualImplementedDtor::~VirtualImplementedDtor()
800800
{
801801
}
802802

0 commit comments

Comments
 (0)