diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-28 16:53:57 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-28 16:53:57 +0000 |
commit | 04946e0b64e5bafcfb01cca515f5abc34386e15c (patch) | |
tree | 441a2131af5bd1ead38e8eceb39d0def2ba6b2e7 /lib/persistence.h | |
parent | No global static for factory map (diff) | |
download | ilt-04946e0b64e5bafcfb01cca515f5abc34386e15c.tar.bz2 ilt-04946e0b64e5bafcfb01cca515f5abc34386e15c.tar.xz ilt-04946e0b64e5bafcfb01cca515f5abc34386e15c.zip |
Fix up all remaining warnings
Diffstat (limited to 'lib/persistence.h')
-rw-r--r-- | lib/persistence.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/persistence.h b/lib/persistence.h index 5468cd3..60b40ca 100644 --- a/lib/persistence.h +++ b/lib/persistence.h @@ -107,7 +107,9 @@ namespace Persistence { struct Persistable; struct PersistenceStore { + PersistenceStore() = default; virtual ~PersistenceStore() = default; + DEFAULT_MOVE_NO_COPY(PersistenceStore); template<typename T> [[nodiscard]] inline bool persistType(const T * const, const std::type_info & ti); |