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

@ -12,7 +12,7 @@ namespace
{
struct my_base
{
virtual ~my_base() {}
virtual ~my_base() = default;
virtual void my_method() = 0;
virtual void my_method( int ) = 0;
};