ITweak: Default virtual destructor

Same behavor, but allows the destructor to be trivial.
This commit is contained in:
Lioncash 2020-03-26 01:14:39 -04:00
parent 51afa94e8c
commit dd76e73e11
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@
namespace urde {
class ITweak {
public:
virtual ~ITweak() {}
virtual ~ITweak() = default;
};
} // namespace urde