diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-26 20:21:12 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-26 20:21:12 +0000 |
commit | 239b3ab10b460da34c490a7e06a21c984e21ffb6 (patch) | |
tree | 4ce09f5d091ffbcf063a9d0fc076659dfe9e3142 /lib/cache.h | |
parent | Don't run the app by default (diff) | |
download | ilt-239b3ab10b460da34c490a7e06a21c984e21ffb6.tar.bz2 ilt-239b3ab10b460da34c490a7e06a21c984e21ffb6.tar.xz ilt-239b3ab10b460da34c490a7e06a21c984e21ffb6.zip |
Enable all Jason Turner recommended warnings
Diffstat (limited to 'lib/cache.h')
-rw-r--r-- | lib/cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/cache.h b/lib/cache.h index 48b9c55..2a6e3e5 100644 --- a/lib/cache.h +++ b/lib/cache.h @@ -7,6 +7,9 @@ template<typename Obj> class Cache { public: using Ptr = std::shared_ptr<Obj>; + + virtual ~Cache() = default; + [[nodiscard]] Ptr get(const std::string & key) { |