diff options
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index c3baca2046a3..1202f5dd2336 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -213,11 +213,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); }; |