Use default/delete for ctor/dtor

This commit is contained in:
Alexander Grund 2020-07-09 19:39:48 +02:00
parent 35fa6e63e6
commit 353849e9ad
No known key found for this signature in database
GPG key ID: AA48A0760367A42B
28 changed files with 100 additions and 92 deletions

View file

@ -17,8 +17,7 @@ namespace
class base
{
public:
virtual ~base()
{}
virtual ~base() = default;
virtual void method() = 0;
};