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/set.hpp>
10
11template <typename T,
12 typename Hash = std::hash<T>,
13 typename Eq = std::equal_to<T>>
14using test_set_t = immer::set<T, Hash, Eq, immer::default_memory_policy, 6u>;
15
16#define SET_T test_set_t
17#include "generic.ipp"
18