diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-06T02·26+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-06T02·30+0000 |
commit | 3ec366167823c0821d94b4b79fb6265c58e8bffb (patch) | |
tree | b9989962bed8d9fb9d595b34d753bdb4a75069d5 /third_party/nix/src/libstore/derivations.hh | |
parent | 91bd7ce73ab7eacaf995090014f67391624531c1 (diff) |
refactor(tvix): Use absl::btree_map for DerivationInputs r/1611
Change-Id: If160ab1b09161969d9080d5d0d6f82e44a953e3c Reviewed-on: https://cl.tvl.fyi/c/depot/+/1684 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/nix/src/libstore/derivations.hh')
-rw-r--r-- | third_party/nix/src/libstore/derivations.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/third_party/nix/src/libstore/derivations.hh b/third_party/nix/src/libstore/derivations.hh index 63527149d8a0..dfdebdd01ec8 100644 --- a/third_party/nix/src/libstore/derivations.hh +++ b/third_party/nix/src/libstore/derivations.hh @@ -42,10 +42,8 @@ using DerivationOutputs = absl::btree_map<std::string, DerivationOutput>; /* For inputs that are sub-derivations, we specify exactly which output IDs we are interested in. */ -// TODO(grfn): change to absl::flat_hash_map -using DerivationInputs = std::map<Path, StringSet>; +using DerivationInputs = absl::btree_map<Path, StringSet>; -// TODO(grfn): change to absl::flat_hash_map using StringPairs = std::map<std::string, std::string>; struct BasicDerivation { |