about summary refs log tree commit diff
path: root/src/libstore/globals.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-04T16·02+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-04T16·02+0200
commitdaccd6899908bd1490cddb393700ec1e9b222aea (patch)
tree1ffe64677948b1bb4cbb38a37687466bf5c1cefc /src/libstore/globals.hh
parent70188305090331537e8ae47bcca0a76584884ea3 (diff)
Refactor
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r--src/libstore/globals.hh10
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);
 };