diff options
author | crupest <crupest@outlook.com> | 2022-01-08 16:31:09 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-08 16:31:09 +0800 |
commit | 431cbdbe7d3ae8c45458dcf914717b0365ecd99a (patch) | |
tree | c5e593ee1149d0fe3359c010b305ca4e14b8f1c0 /include/cru/common/Base.hpp | |
parent | 9bd6a3a18422e8d176ecb52471af69db41d6683c (diff) | |
download | cru-431cbdbe7d3ae8c45458dcf914717b0365ecd99a.tar.gz cru-431cbdbe7d3ae8c45458dcf914717b0365ecd99a.tar.bz2 cru-431cbdbe7d3ae8c45458dcf914717b0365ecd99a.zip |
...
Diffstat (limited to 'include/cru/common/Base.hpp')
-rw-r--r-- | include/cru/common/Base.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cru/common/Base.hpp b/include/cru/common/Base.hpp index 174ac037..ef5727c5 100644 --- a/include/cru/common/Base.hpp +++ b/include/cru/common/Base.hpp @@ -40,7 +40,7 @@ #define CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(classname) \ classname() = default; \ - ~classname() override = default; + ~classname() = default; #define CRU_DEFINE_COMPARE_OPERATORS(classname) \ inline bool operator==(const classname& left, const classname& right) { \ |