1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2015-2015. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/container for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11#include <boost/container/map.hpp>
12
13struct empty
14{
15 friend bool operator == (const empty &, const empty &){ return true; }
16 friend bool operator < (const empty &, const empty &){ return true; }
17};
18
19template class ::boost::container::map<empty, empty>;
20template class ::boost::container::multimap<empty, empty>;
21
22volatile ::boost::container::map<empty, empty> dummy;
23volatile ::boost::container::multimap<empty, empty> dummy2;
24
25#include <boost/container/allocator.hpp>
26#include <boost/container/adaptive_pool.hpp>
27#include "movable_int.hpp"
28#include "dummy_test_allocator.hpp"
29
30namespace boost {
31namespace container {
32
33typedef std::pair<const test::movable_and_copyable_int, test::movable_and_copyable_int> pair_t;
34
35//Explicit instantiation to detect compilation errors
36
37//map
38template class map
39 < test::movable_and_copyable_int
40 , test::movable_and_copyable_int
41 , std::less<test::movable_and_copyable_int>
42 , test::simple_allocator< pair_t >
43 >;
44
45template class map
46 < test::movable_and_copyable_int
47 , test::movable_and_copyable_int
48 , std::less<test::movable_and_copyable_int>
49 , adaptive_pool< pair_t >
50 >;
51}} //boost::container
52
53int main()
54{
55 return 0;
56}
57

source code of boost/libs/container/test/explicit_inst_map_test.cpp