diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-03-10 02:20:32 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2022-03-11 22:30:10 +0000 |
commit | 91adfb8894b4b8183c2948712d56a97bb9d93d9f (patch) | |
tree | 4b0cef091af49d7cd3d3c39321b634d846aa7e8d /src/libexpr/eval-cache.hh | |
parent | d5322698a2abbc6d141e1d244e17b0d226a2f18b (diff) |
Create some type aliases for string Contexts
Diffstat (limited to 'src/libexpr/eval-cache.hh')
-rw-r--r-- | src/libexpr/eval-cache.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval-cache.hh b/src/libexpr/eval-cache.hh index 40f1d4ffc..c9a9bf471 100644 --- a/src/libexpr/eval-cache.hh +++ b/src/libexpr/eval-cache.hh @@ -52,7 +52,7 @@ struct misc_t {}; struct failed_t {}; typedef uint64_t AttrId; typedef std::pair<AttrId, Symbol> AttrKey; -typedef std::pair<std::string, std::vector<std::pair<Path, std::string>>> string_t; +typedef std::pair<std::string, NixStringContext> string_t; typedef std::variant< std::vector<Symbol>, |