diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-14 11:48:42 +0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-14 11:48:42 +0100 |
commit | dba33d4018c07699b59f024ca61442c896579c64 (patch) | |
tree | db6ed21270e77bc497adf44014530819c5318837 /src/libstore | |
parent | 61fd494d760d667649fa48665f9aa75ba88a1eb6 (diff) | |
download | guix-dba33d4018c07699b59f024ca61442c896579c64.tar.gz |
Minor style fixes
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/globals.cc | 2 | ||||
-rw-r--r-- | src/libstore/globals.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 1d4bcd94f7..40000c9db5 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -215,7 +215,7 @@ string Settings::pack() } -void Settings::unpack(const string &pack) { +void Settings::unpack(const string & pack) { Strings lines = tokenizeString<Strings>(pack, "\n"); foreach (Strings::iterator, i, lines) { string::size_type eq = i->find('='); diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 13772c65cb..31324478b6 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -25,7 +25,7 @@ struct Settings { string pack(); - void unpack(const string &pack); + void unpack(const string & pack); SettingsMap getOverrides(); |