diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-05-03 14:37:28 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-05-03 15:00:34 +0200 |
commit | a3c6c5b1c745a72a6a46bdf1a1de7a51a53f76b0 (patch) | |
tree | d1484046123f178724d86e265b49425e2c90628b /src/libutil/experimental-features.hh | |
parent | 4a79cba5118f29b896f3d50164beacd4901ab01f (diff) |
nix profile: Support overriding outputs
Diffstat (limited to 'src/libutil/experimental-features.hh')
-rw-r--r-- | src/libutil/experimental-features.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/experimental-features.hh b/src/libutil/experimental-features.hh index a6d080094..57512830c 100644 --- a/src/libutil/experimental-features.hh +++ b/src/libutil/experimental-features.hh @@ -55,7 +55,7 @@ public: * Semi-magic conversion to and from json. * See the nlohmann/json readme for more details. */ -void to_json(nlohmann::json&, const ExperimentalFeature&); -void from_json(const nlohmann::json&, ExperimentalFeature&); +void to_json(nlohmann::json &, const ExperimentalFeature &); +void from_json(const nlohmann::json &, ExperimentalFeature &); } |