Skip to content
Snippets Groups Projects
Commit f662124b authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix test warning

parent 0a5a10df
No related branches found
No related tags found
No related merge requests found
......@@ -137,6 +137,7 @@ void cpp_features_test_object_t::test<3>()
class Foo
{
public:
virtual ~Foo() = default;
virtual bool is_happy() const = 0;
};
......@@ -166,6 +167,7 @@ void cpp_features_test_object_t::test<4>()
class Vehicle
{
public:
virtual ~Vehicle() = default;
virtual bool has_wheels() const = 0;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment