]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/multiset/modifiers/insert/1.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / multiset / modifiers / insert / 1.cc
CommitLineData
b2dad0e3
BK
1// 1999-06-24 bkoz
2
aa118a03 3// Copyright (C) 1999-2014 Free Software Foundation, Inc.
b2dad0e3
BK
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)
b2dad0e3
BK
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/>.
b2dad0e3
BK
19
20// 23.3.4 template class multiset
21
80e39f4a 22#include <sstream>
d27bba5e 23#include <iterator>
b2dad0e3
BK
24#include <set>
25#include <algorithm>
80e39f4a 26#include <testsuite_hooks.h>
b2dad0e3 27
d27bba5e
BK
28namespace std
29{
b2dad0e3
BK
30 std::ostream&
31 operator<<(std::ostream& os, std::pair<int, int> const& p)
32 { return os << p.first << ' ' << p.second; }
33}
34
35bool
36operator<(std::pair<int, int> const& lhs, std::pair<int, int> const& rhs)
37{ return lhs.first < rhs.first; }
38
39int main ()
40{
80e39f4a 41 bool test __attribute__((unused)) = true;
b2dad0e3
BK
42 typedef std::multiset<std::pair<int, int> >::iterator iterator;
43 std::pair<int, int> p(69, 0);
44 std::multiset<std::pair<int, int> > s;
45
46 for (p.second = 0; p.second < 5; ++p.second)
47 s.insert(p);
48 for (iterator it = s.begin(); it != s.end(); ++it)
49 if (it->second < 5)
50 {
51 s.insert(it, p);
52 ++p.second;
53 }
54
80e39f4a 55 std::ostringstream stream;
b2dad0e3 56 std::copy(s.begin(), s.end(),
80e39f4a
BK
57 std::ostream_iterator<std::pair<int, int> >(stream, "\n"));
58 const std::string expected("69 0\n69 1\n69 2\n69 3\n69 4\n"
59 "69 5\n69 6\n69 7\n69 8\n69 9\n");
60 std::string tested(stream.str());
61 VERIFY( tested == expected );
b2dad0e3
BK
62
63 return 0;
64}