Skip to content

Commit 3593853

Browse files
committed
IO/config: remove unneeded destructor definition
1 parent 3884fb4 commit 3593853

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/IO/configuration_config.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,6 @@ Config & Config::operator=(Config other)
7878
return *this;
7979
}
8080

81-
/*!
82-
Destructor.
83-
*/
84-
Config::~Config()
85-
{
86-
}
87-
8881
/*!
8982
Swap operator.
9083

src/IO/configuration_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Config
4848
Config & operator=(Config other);
4949
Config & operator=(Config &&other) = default;
5050

51-
virtual ~Config();
51+
virtual ~Config() = default;
5252

5353
void swap(Config &other);
5454

0 commit comments

Comments
 (0)