1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 20:01:15 +02:00

EvalCache AttrKey: Use Symbol instead of std::string

This commit is contained in:
Eelco Dolstra 2022-04-26 14:16:20 +02:00
parent 474695975d
commit b12c33510c
3 changed files with 39 additions and 34 deletions

View file

@ -51,7 +51,7 @@ struct missing_t {};
struct misc_t {};
struct failed_t {};
typedef uint64_t AttrId;
typedef std::pair<AttrId, std::string> AttrKey;
typedef std::pair<AttrId, Symbol> AttrKey;
typedef std::pair<std::string, NixStringContext> string_t;
typedef std::variant<