aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2022-04-22 10:01:02 +0200
committerThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2022-04-22 10:01:02 +0200
commit7ca6fbc8caf30d0f8b0dca9a294022d3e37c4082 (patch)
tree9524161787378d7b0746bc8c3f0bb625c83c4e8f /src/libexpr
parent8adaa6acb5a513e010d262386271ef39c418ea7f (diff)
Move ChunkedVector to its own header
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/nixexpr.hh1
-rw-r--r--src/libexpr/symbol-table.hh1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh
index 1a387d4fd..217c7e74d 100644
--- a/src/libexpr/nixexpr.hh
+++ b/src/libexpr/nixexpr.hh
@@ -6,6 +6,7 @@
#include "value.hh"
#include "symbol-table.hh"
#include "error.hh"
+#include "chunked-vector.hh"
namespace nix {
diff --git a/src/libexpr/symbol-table.hh b/src/libexpr/symbol-table.hh
index d0cd841a0..b6ad60f68 100644
--- a/src/libexpr/symbol-table.hh
+++ b/src/libexpr/symbol-table.hh
@@ -5,6 +5,7 @@
#include <unordered_map>
#include "types.hh"
+#include "chunked-vector.hh"
namespace nix {