• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //////////////////////////////////////////////////////////////////////////////
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 <set>
13 
14 #include "bench_set.hpp"
15 
main()16 int main()
17 {
18    using namespace boost::container;
19 
20    fill_range_ints();
21    fill_range_strings();
22 
23    //multiset vs std::multiset
24    launch_tests< multiset<int> , std::multiset<int> >
25       ("multiset<int>", "std::multiset<int>");
26    launch_tests< multiset<string> , std::multiset<string> >
27       ("multiset<string>", "std::multiset<string>");
28 
29    return 0;
30 }
31