Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / unordered_multiset / modifiers / emplace.cc
blob5a8f2a4f20bdd38b8309a1ce39fb343baf5f7883
1 // { dg-options "-std=gnu++0x" }
3 // Copyright (C) 2011-2013 Free Software Foundation, Inc.
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
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // range insert
22 #include <vector>
23 #include <unordered_set>
24 #include <testsuite_hooks.h>
26 class PathPoint
28 public:
29 PathPoint(char t, const std::vector<double>& c)
30 : type(t), coords(c) { }
31 PathPoint(char t, std::vector<double>&& c)
32 : type(t), coords(std::move(c)) { }
33 char getType() const { return type; }
34 const std::vector<double>& getCoords() const { return coords; }
35 private:
36 char type;
37 std::vector<double> coords;
40 struct PathPointHasher
42 std::size_t operator() (const PathPoint& __pp) const
43 { return __pp.getType(); }
46 struct PathPointEqual
48 bool operator() (const PathPoint& __lhs, const PathPoint& __rhs) const
49 { return __lhs.getType() == __rhs.getType(); }
52 bool test __attribute__((unused)) = true;
54 void test01()
56 typedef std::unordered_multiset<PathPoint, PathPointHasher,
57 PathPointEqual> Mset;
58 Mset ms;
60 std::vector<double> coord1 = { 0.0, 1.0, 2.0 };
62 auto it = ms.emplace('a', coord1);
63 VERIFY( ms.size() == 1 );
64 VERIFY( it->getType() == 'a' );
66 coord1[0] = 3.0;
67 it = ms.emplace('a', coord1);
68 VERIFY( ms.size() == 2 );
69 VERIFY( it->getType() == 'a' );
70 VERIFY( it->getCoords()[0] == 3.0 );
72 it = ms.emplace_hint(ms.begin(), 'b', coord1);
73 VERIFY( it != ms.end() );
74 VERIFY( it->getType() == 'b' );
75 VERIFY( it->getCoords()[0] == 3.0 );
77 double *px = &coord1[0];
78 it = ms.emplace('c', std::move(coord1));
79 VERIFY( ms.size() == 4 );
80 VERIFY( it->getType() == 'c' );
81 VERIFY( &(it->getCoords()[0]) == px );
84 int main()
86 test01();
87 return 0;