From 324d385b29979dee066a36250cfea9e030f24bfe Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 19 Jul 2020 17:59:44 +0100 Subject: refactor(3p/nix): Rename & undeprecate Bindings::lexicographicOrder The function is renamed to `SortedByKeys`, which is more descriptive, and annotated with a comment about what it is used for. The deprecation warning has been removed because this function is currently functionally required. Change-Id: I0ee3a76deff05f366feca9ddac8f38ab34bffbd0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1288 Tested-by: BuildkiteCI Reviewed-by: glittershark --- third_party/nix/src/libexpr/primops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'third_party/nix/src/libexpr/primops.cc') diff --git a/third_party/nix/src/libexpr/primops.cc b/third_party/nix/src/libexpr/primops.cc index 9cda2a1472c9..fcd69144240a 100644 --- a/third_party/nix/src/libexpr/primops.cc +++ b/third_party/nix/src/libexpr/primops.cc @@ -561,7 +561,7 @@ static void prim_derivationStrict(EvalState& state, const Pos& pos, StringSet outputs; outputs.insert("out"); - for (auto& i : args[0]->attrs->lexicographicOrder()) { + for (auto& i : args[0]->attrs->SortedByKeys()) { if (i->name == state.sIgnoreNulls) { continue; } -- cgit 1.4.1