mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
daemon: Remove unused function exportPaths.
* nix/libstore/store-api.cc (exportPaths): Remove it. * nix/libstore/store-api.hh (exportPaths): Likewise. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
1c5f5d6d8c
commit
93032586df
2 changed files with 0 additions and 18 deletions
|
@ -236,17 +236,6 @@ string showPaths(const PathSet & paths)
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void exportPaths(StoreAPI & store, const Paths & paths,
|
|
||||||
bool sign, Sink & sink)
|
|
||||||
{
|
|
||||||
foreach (Paths::const_iterator, i, paths) {
|
|
||||||
writeInt(1, sink);
|
|
||||||
store.exportPath(*i, sign, sink);
|
|
||||||
}
|
|
||||||
writeInt(0, sink);
|
|
||||||
}
|
|
||||||
|
|
||||||
Path readStorePath(Source & from)
|
Path readStorePath(Source & from)
|
||||||
{
|
{
|
||||||
Path path = readString(from);
|
Path path = readString(from);
|
||||||
|
|
|
@ -369,13 +369,6 @@ extern std::shared_ptr<StoreAPI> store;
|
||||||
and separated by commas). */
|
and separated by commas). */
|
||||||
string showPaths(const PathSet & paths);
|
string showPaths(const PathSet & paths);
|
||||||
|
|
||||||
|
|
||||||
/* Export multiple paths in the format expected by ‘nix-store
|
|
||||||
--import’. */
|
|
||||||
void exportPaths(StoreAPI & store, const Paths & paths,
|
|
||||||
bool sign, Sink & sink);
|
|
||||||
|
|
||||||
|
|
||||||
MakeError(SubstError, Error)
|
MakeError(SubstError, Error)
|
||||||
MakeError(BuildError, Error) /* denotes a permanent build failure */
|
MakeError(BuildError, Error) /* denotes a permanent build failure */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue