diff options
Diffstat (limited to 'nix/libstore/globals.hh')
-rw-r--r-- | nix/libstore/globals.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nix/libstore/globals.hh b/nix/libstore/globals.hh index 7a81283fc0..df113e2b63 100644 --- a/nix/libstore/globals.hh +++ b/nix/libstore/globals.hh @@ -211,11 +211,11 @@ struct Settings { private: SettingsMap settings, overrides; - void get(string & res, const string & name); - void get(bool & res, const string & name); - void get(StringSet & res, const string & name); - void get(Strings & res, const string & name); - template<class N> void get(N & res, const string & name); + void _get(string & res, const string & name); + void _get(bool & res, const string & name); + void _get(StringSet & res, const string & name); + void _get(Strings & res, const string & name); + template<class N> void _get(N & res, const string & name); }; |