diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 05:54:10 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 05:54:10 +0100 |
commit | 2df9c2c00f0645245d374915b10e6eca58856505 (patch) | |
tree | 952dde7a5ca32a8f22d6527e12cab137d41a7025 /src/libexpr | |
parent | 5d77afe0a4c70fe4d490717dfcbcab11823f914f (diff) |
Merge pull request #9374 from hercules-ci/fix-nogc
Fix buildNoGc
(cherry picked from commit 7762335a9c4d56f7501825345728c3f94e88bc31)
Change-Id: I3ad53c9c1dd9180a2abc3528e9437c28ac95b303
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index e98280f33..d8dc81ef9 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -28,6 +28,7 @@ #include <sys/resource.h> #include <nlohmann/json.hpp> +#include <boost/container/small_vector.hpp> #if HAVE_BOEHMGC @@ -39,7 +40,6 @@ #include <boost/coroutine2/coroutine.hpp> #include <boost/coroutine2/protected_fixedsize_stack.hpp> #include <boost/context/stack_context.hpp> -#include <boost/container/small_vector.hpp> #endif |