diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-10-06 14:00:42 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-10-06 14:52:30 +0200 |
commit | ad143c5b3b7e713b89f0437ce17c20ac642ca530 (patch) | |
tree | e81c2c5e57115d9882ec22ed02e91fd8ea7c41b0 /src/libstore/store-api.hh | |
parent | 2856878b411694d2a815a88a5b3fe81c0f15811e (diff) |
Shut up some clang warnings
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 854446987..450c0f554 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -194,6 +194,8 @@ struct StoreConfig : public Config */ StoreConfig() { assert(false); } + virtual ~StoreConfig() { } + virtual const std::string name() = 0; const PathSetting storeDir_{this, false, settings.nixStore, |