2#include <ossia/detail/config.hpp>
4#include <ossia/detail/pod_vector.hpp>
6#if defined(_GLIBCXX_DEBUG)
7#define OSSIA_NO_SMALLVECTOR
8#elif defined(_LIBCPP_DEBUG_LEVEL) && _LIBCPP_DEBUG_LEVEL > 0
9#define OSSIA_NO_SMALLVECTOR
10#elif defined(_ITERATOR_DEBUG_LEVEL) && _ITERATOR_DEBUG_LEVEL > 0
11#define OSSIA_NO_SMALLVECTOR
14#if !defined(OSSIA_NO_SMALLVECTOR)
15#define OSSIA_SMALL_VECTOR
16#include <boost/container/small_vector.hpp>
17#include <boost/container/static_vector.hpp>
18#include <boost/version.hpp>
22template <
typename T, std::
size_t N>
23using small_vector = boost::container::small_vector<T, N>;
24template <
typename T, std::
size_t N>
25using small_pod_vector = boost::container::small_vector<T, N, pod_allocator<T>>;
26template <
typename T, std::
size_t N>
27using static_vector = boost::container::static_vector<T, N>;
32template <
typename T, std::
size_t N>
33using small_vector = std::vector<T>;
34template <
typename T, std::
size_t N>
35using small_pod_vector = pod_vector<T>;
36template <
typename T, std::
size_t N>
37using static_vector = std::vector<T>;
41#if BOOST_VERSION >= 107200
42static_assert(
noexcept(ossia::small_vector<int, 1>{}));
43static_assert(
noexcept(ossia::small_pod_vector<int, 1>{}));
44static_assert(
noexcept(ossia::static_vector<int, 1>{}));