diff options
author | Maxime Devos <maximedevos@telenet.be> | 2022-09-10 19:20:39 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-11 16:43:30 +0200 |
commit | 93032586df6b925e1ed9102dc3a77aa626aa60d3 (patch) | |
tree | 2d3cd6849b1ff3048f6a854d6f6db8bf6692aa49 /nix/libstore/store-api.hh | |
parent | 1c5f5d6d8cb3bd42ed436e31366a328598165734 (diff) | |
download | guix-93032586df6b925e1ed9102dc3a77aa626aa60d3.tar.gz |
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>
Diffstat (limited to 'nix/libstore/store-api.hh')
-rw-r--r-- | nix/libstore/store-api.hh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/nix/libstore/store-api.hh b/nix/libstore/store-api.hh index 0693085a25..82a79e50e2 100644 --- a/nix/libstore/store-api.hh +++ b/nix/libstore/store-api.hh @@ -369,13 +369,6 @@ extern std::shared_ptr<StoreAPI> store; and separated by commas). */ 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(BuildError, Error) /* denotes a permanent build failure */ |