forked from lix-project/lix
BasicDerivation::findOutput cannot return reference anymore
This commit is contained in:
parent
442d43178b
commit
abea26a968
|
@ -24,7 +24,7 @@ StorePath DerivationOutput::path(const Store & store, string drvName) const
|
|||
}, output);
|
||||
}
|
||||
|
||||
const StorePath & BasicDerivation::findOutput(const Store & store, const string & id) const
|
||||
const StorePath BasicDerivation::findOutput(const Store & store, const string & id) const
|
||||
{
|
||||
auto i = outputs.find(id);
|
||||
if (i == outputs.end())
|
||||
|
|
|
@ -52,7 +52,7 @@ struct BasicDerivation
|
|||
|
||||
/* Return the path corresponding to the output identifier `id' in
|
||||
the given derivation. */
|
||||
const StorePath & findOutput(const Store & store, const std::string & id) const;
|
||||
const StorePath findOutput(const Store & store, const std::string & id) const;
|
||||
|
||||
bool isBuiltin() const;
|
||||
|
||||
|
|
Loading…
Reference in a new issue