]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/performance/23_containers/create/map.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / performance / 23_containers / create / map.cc
CommitLineData
fd1e1726
BK
1// 2003-03-01 gp dot bolton at computer dot org
2
a945c346 3// Copyright (C) 2003-2024 Free Software Foundation, Inc.
21c332dc
PC
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
21c332dc
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
21c332dc 20
1d3d8fff 21#include <testsuite_performance.h>
fd1e1726
BK
22
23template<typename Container, int Iter>
24 void
25 do_loop()
26 {
27 Container obj;
28 const int iterations = 250000;
29 for (int i = 0; i < iterations; ++i)
30 obj[i] = i;
31 }
32
33int
34main()
35{
36#ifdef TEST_S1
37#define thread_type false
38#endif
39
40#ifdef TEST_T1
41#define thread_type true
42#endif
43
44 typedef __gnu_test::maps<int, thread_type>::type container_types;
fd1e1726
BK
45 typedef test_sequence<thread_type> test_type;
46 test_type test("create");
d7f245b1 47 __gnu_cxx::typelist::apply(test, container_types());
fd1e1726
BK
48
49 return 0;
21c332dc 50}
fd1e1726 51