From 6bb8733e93f97a0e55b858ecd4e17d7e7b52619c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Thu, 15 Jan 2026 18:57:53 +0100 Subject: [PATCH] Fix broken include in small_vector.h (#359) --- src/util/small_vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/small_vector.h b/src/util/small_vector.h index 5bad7df9..2a1232ab 100644 --- a/src/util/small_vector.h +++ b/src/util/small_vector.h @@ -56,6 +56,8 @@ #if defined(HAVE_BOOST_CONTAINER_SMALL_VECTOR) # include +#else +# include #endif namespace ue2 { @@ -68,8 +70,6 @@ using small_vector = boost::container::small_vector; #else -#include - // Boost version isn't new enough, fall back to just using std::vector. template > using small_vector = std::vector;