diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-04T16·13+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-04T16·13+0200 |
commit | 988bf594215007c96903b4a646b0cf024fb8f596 (patch) | |
tree | b155079509d3d6302e9efb2a7db1c50bed307852 /src/libstore/globals.hh | |
parent | daccd6899908bd1490cddb393700ec1e9b222aea (diff) |
Move some options out of globals
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 1202f5dd2336..743d2061ffa5 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -21,7 +21,9 @@ struct Settings { void set(const string & name, const string & value); - string get(const string & name, const string & def = ""); + string get(const string & name, const string & def); + + Strings get(const string & name, const Strings & def); void update(); |