diff options
author | jade <lix@jade.fyi> | 2024-03-31 15:38:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@lix> | 2024-03-31 15:38:48 +0000 |
commit | 73507a716761241ca38d35fb6a873c43967c8139 (patch) | |
tree | 3e05db96d19a6c0fd683357cfff269be8a0e42d5 /src/libstore/store-api.hh | |
parent | 6165f210742d74dc7d74b011cc6f782d59c2f407 (diff) | |
parent | 194a1b91af6d8848e4cc0dfbdcc153ee2dbed140 (diff) |
Merge changes Ib62d3d68,Ic3e7affe into main
* changes:
Make things that can throw not noexcept anymore
Fix various clang-tidy lints
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 88c182b94..cb9f8e4a6 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -108,7 +108,7 @@ struct StoreConfig : public Config static StringSet getDefaultSystemFeatures(); - virtual ~StoreConfig() { } + virtual ~StoreConfig() noexcept(false) { } /** * The name of this type of store. @@ -220,7 +220,7 @@ public: */ virtual void init() {}; - virtual ~Store() { } + virtual ~Store() noexcept(false) { } virtual std::string getUri() = 0; |