aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derived-path.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-11-21 09:38:08 +0100
committerEelco Dolstra <edolstra@gmail.com>2022-11-21 11:56:20 +0100
commite7a5b76844a649645e51a60dd18fd383d14d8755 (patch)
treeced5a48f3341f53bfad546c673200a604e46047d /src/libstore/derived-path.cc
parent62960f32915909a5104f2ca3a32b25fb3cfd34c7 (diff)
Rename derivedPathsWithHintsToJSON -> builtPathsToJSON
Diffstat (limited to 'src/libstore/derived-path.cc')
-rw-r--r--src/libstore/derived-path.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derived-path.cc b/src/libstore/derived-path.cc
index 44587ae78..7fe9b9648 100644
--- a/src/libstore/derived-path.cc
+++ b/src/libstore/derived-path.cc
@@ -64,7 +64,7 @@ nlohmann::json stuffToJSON(const std::vector<T> & ts, ref<Store> store) {
return res;
}
-nlohmann::json derivedPathsWithHintsToJSON(const BuiltPaths & buildables, ref<Store> store)
+nlohmann::json builtPathsToJSON(const BuiltPaths & buildables, ref<Store> store)
{ return stuffToJSON<BuiltPath>(buildables, store); }
nlohmann::json derivedPathsToJSON(const DerivedPaths & paths, ref<Store> store)
{ return stuffToJSON<DerivedPath>(paths, store); }