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;