From: Matthew Barr Date: Thu, 16 Mar 2017 05:30:01 +0000 (+1100) Subject: Use the default allocator for std::vector X-Git-Tag: v4.5.0^2~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01b91da1cd1ae9e9ab46999b1d549836062887ee;p=thirdparty%2Fvectorscan.git Use the default allocator for std::vector --- diff --git a/src/util/small_vector.h b/src/util/small_vector.h index c67ad562..0b60d8c0 100644 --- a/src/util/small_vector.h +++ b/src/util/small_vector.h @@ -52,8 +52,7 @@ using small_vector = boost::container::small_vector; #else // Boost version isn't new enough, fall back to just using std::vector. -template > +template > using small_vector = std::vector; #endif // HAVE_BOOST_CONTAINER_SMALL_VECTOR