Browse Source

Fix the Unix CI by adding an explicit destructor

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/1214/head
Dimitar Dobrev 6 years ago
parent
commit
9959941f29
  1. 4
      tests/VTables/VTables.cpp
  2. 1
      tests/VTables/VTables.h

4
tests/VTables/VTables.cpp

@ -4,6 +4,10 @@ Foo::Foo() @@ -4,6 +4,10 @@ Foo::Foo()
{
}
Foo::~Foo()
{
}
int Foo::vfoo()
{
return 5;

1
tests/VTables/VTables.h

@ -10,6 +10,7 @@ public: @@ -10,6 +10,7 @@ public:
};
Foo();
~Foo();
virtual int vfoo();
virtual int vbar();

Loading…
Cancel
Save