diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 08:47:55 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 08:47:55 +0100 |
commit | 78422bdbabbba8708c0c46566ed8674ea85e2dec (patch) | |
tree | 7eabdcbcd73b1123bcc11249520789a97009636e /src | |
parent | 50ef364dbe0a60845067968ed50966c8d08b1580 (diff) |
Merge pull request #9848 from obsidiansystems/default-system-features-static
Make `StoreConfig::getDefaultSystemFeatures` a static method
(cherry picked from commit 5a9513cdbae31ea5e6f6e7afa7b3c2e3a9a26474)
Change-Id: Ia9c0ae2b7de419bd60aea8bf905154b96c428276
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index d3d7a315e..f4a3ab0e3 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -105,7 +105,7 @@ struct StoreConfig : public Config StoreConfig() = delete; - StringSet getDefaultSystemFeatures(); + static StringSet getDefaultSystemFeatures(); virtual ~StoreConfig() { } |