19#ifndef CXXUTILS_INPLACE_VECTOR_H
20#define CXXUTILS_INPLACE_VECTOR_H
24#ifdef __cpp_lib_inplace_vector
27#include <inplace_vector>
29 using std::inplace_vector;
36#include <boost/container/small_vector.hpp>
38 template <
class T,
size_t N>
boost::container::small_vector< T, N > inplace_vector