diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-04 18:02:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-11 17:20:17 +0200 |
commit | 31909515634d74e4c3d92be6186c5c48244582ae (patch) | |
tree | ff71f141135601dd578f7520f13b956bb2063140 /nix/libstore/globals.hh | |
parent | f530ee6f356f4299ca343dde7f4c0742300ffa08 (diff) | |
download | guix-31909515634d74e4c3d92be6186c5c48244582ae.tar.gz |
Refactor
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); }; |