diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-04T13·48+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-04T13·48+0100 |
commit | fa7cd5369b7d9f947b0b26ca681e94b81068a3ef (patch) | |
tree | c31cd0f58e516929a21000de609958b73b7059c7 /src/libmain | |
parent | c10c61449f954702ae6d8092120321744acd82ff (diff) |
StoreAPI -> Store
Calling a class an API is a bit redundant...
Diffstat (limited to 'src/libmain')
-rw-r--r-- | src/libmain/shared.cc | 4 | ||||
-rw-r--r-- | src/libmain/shared.hh | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index 656d04cab011..88ed52497fb9 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -46,7 +46,7 @@ void printGCWarning() } -void printMissing(ref<StoreAPI> store, const PathSet & paths) +void printMissing(ref<Store> store, const PathSet & paths) { unsigned long long downloadSize, narSize; PathSet willBuild, willSubstitute, unknown; @@ -55,7 +55,7 @@ void printMissing(ref<StoreAPI> store, const PathSet & paths) } -void printMissing(ref<StoreAPI> store, const PathSet & willBuild, +void printMissing(ref<Store> store, const PathSet & willBuild, const PathSet & willSubstitute, const PathSet & unknown, unsigned long long downloadSize, unsigned long long narSize) { diff --git a/src/libmain/shared.hh b/src/libmain/shared.hh index 6f826d8f6fd7..e4b984f067e4 100644 --- a/src/libmain/shared.hh +++ b/src/libmain/shared.hh @@ -31,11 +31,11 @@ void printVersion(const string & programName); /* Ugh. No better place to put this. */ void printGCWarning(); -class StoreAPI; +class Store; -void printMissing(ref<StoreAPI> store, const PathSet & paths); +void printMissing(ref<Store> store, const PathSet & paths); -void printMissing(ref<StoreAPI> store, const PathSet & willBuild, +void printMissing(ref<Store> store, const PathSet & willBuild, const PathSet & willSubstitute, const PathSet & unknown, unsigned long long downloadSize, unsigned long long narSize); |