1//
2// immer: immutable data structures for C++
3// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
4//
5// This software is distributed under the Boost Software License, Version 1.0.
6// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
7//
8
9#include <immer/vector.hpp>
10
11template <typename T>
12using test_vector_t = immer::vector<T, immer::default_memory_policy, 3u, 4u>;
13
14#define VECTOR_T test_vector_t
15#include "generic.ipp"
16