diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-07-16 09:36:02 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-07-16 09:36:02 -0400 |
commit | e3b394b6e8420795c1976195184921df2c2b3e83 (patch) | |
tree | 59b507b91d4183702cfc5cd9d5165bf34f6bf66f /src/libstore | |
parent | 455bdee2056858b223b39aa86822fd83580038db (diff) |
Small namespace fix
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/derivations.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh index d32793b6a..d170d7223 100644 --- a/src/libstore/derivations.hh +++ b/src/libstore/derivations.hh @@ -76,7 +76,7 @@ StorePath writeDerivation(ref<Store> store, const Derivation & drv, std::string_view name, RepairFlag repair = NoRepair); /* Read a derivation from a file. */ -Derivation parseDerivation(const Store & store, string && s); +Derivation parseDerivation(const Store & store, std::string && s); // FIXME: remove bool isDerivation(const string & fileName); |