mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
daemon: Remove unused function openStore.
* nix/libstore/store-api.cc (openStore): Remove it. * nix/libstore/store-api.hh (openStore): Likewise. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
6519b1d59c
commit
1c5f5d6d8c
2 changed files with 0 additions and 11 deletions
|
@ -277,10 +277,4 @@ namespace nix {
|
||||||
std::shared_ptr<StoreAPI> store;
|
std::shared_ptr<StoreAPI> store;
|
||||||
|
|
||||||
|
|
||||||
std::shared_ptr<StoreAPI> openStore(bool reserveSpace)
|
|
||||||
{
|
|
||||||
return std::shared_ptr<StoreAPI>(new LocalStore(reserveSpace));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -365,11 +365,6 @@ Paths topoSortPaths(StoreAPI & store, const PathSet & paths);
|
||||||
extern std::shared_ptr<StoreAPI> store;
|
extern std::shared_ptr<StoreAPI> store;
|
||||||
|
|
||||||
|
|
||||||
/* Factory method: open the Nix database, either through the local or
|
|
||||||
remote implementation. */
|
|
||||||
std::shared_ptr<StoreAPI> openStore(bool reserveSpace = true);
|
|
||||||
|
|
||||||
|
|
||||||
/* Display a set of paths in human-readable form (i.e., between quotes
|
/* Display a set of paths in human-readable form (i.e., between quotes
|
||||||
and separated by commas). */
|
and separated by commas). */
|
||||||
string showPaths(const PathSet & paths);
|
string showPaths(const PathSet & paths);
|
||||||
|
|
Loading…
Reference in a new issue