apply fixes to more headers

This commit is contained in:
Aaron Gokaslan
2022-09-01 12:28:45 -04:00
parent 4c6652f5b0
commit e3b01e10db
20 changed files with 37 additions and 53 deletions

View File

@@ -63,7 +63,7 @@ class Importer;
class SharedPostProcessInfo {
public:
struct Base {
virtual ~Base() {}
virtual ~Base() = default;
};
//! Represents data that is allocated on the heap, thus needs to be deleted
@@ -84,7 +84,7 @@ public:
explicit TStaticData(T in) :
data(in) {}
~TStaticData() {}
~TStaticData() = default;
T data;
};