blob: 8f86ba4678525d21ebdcbfc0a03d0154911d5fe0 [file] [log] [blame]
Brian Silvermanfad8f552018-08-04 23:36:19 -07001//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2013-2013. 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/set.hpp"
12#include "boost/container/flat_set.hpp"
13#include "bench_set.hpp"
14
15int main()
16{
17 using namespace boost::container;
18
19 fill_range_ints();
20 fill_range_strings();
21
22 //flat_set vs set
23 launch_tests< flat_set<int> , set<int> >
24 ("flat_set<int>", "set<int>");
25 launch_tests< flat_set<string> , set<string> >
26 ("flat_set<string>", "set<string>");
27
28 return 0;
29}