From: Raúl Marín Date: Thu, 15 Jan 2026 17:57:53 +0000 (+0100) Subject: Fix broken include in small_vector.h (#359) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bb8733e93f97a0e55b858ecd4e17d7e7b52619c;p=thirdparty%2Fvectorscan.git Fix broken include in small_vector.h (#359) --- 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;