1 Index: /trunk/boost/unordered/unordered_set.hpp
2 ===================================================================
3 --- misc/boost_1_44_0/boost/unordered/unordered_set.hpp (revision 60754)
4 +++ misc/build/boost_1_44_0/boost/unordered/unordered_set.hpp (revision 68445)
7 #if !defined(BOOST_NO_RVALUE_REFERENCES)
8 + unordered_set(unordered_set const& other)
9 + : table_(other.table_)
13 unordered_set(unordered_set&& other)
14 : table_(other.table_, boost::unordered_detail::move_tag())
16 : table_(other.table_, a, boost::unordered_detail::move_tag())
20 + unordered_set& operator=(unordered_set const& x)
28 #if !defined(BOOST_NO_RVALUE_REFERENCES)
29 + unordered_multiset(unordered_multiset const& other)
30 + : table_(other.table_)
34 unordered_multiset(unordered_multiset&& other)
35 : table_(other.table_, boost::unordered_detail::move_tag())
37 : table_(other.table_, a, boost::unordered_detail::move_tag())
41 + unordered_multiset& operator=(unordered_multiset const& x)
47 Index: /trunk/boost/unordered/unordered_map.hpp
48 ===================================================================
49 --- misc/boost_1_44_0/boost/unordered/unordered_map.hpp (revision 60754)
50 +++ misc/build/boost_1_44_0/boost/unordered/unordered_map.hpp (revision 68445)
53 #if !defined(BOOST_NO_RVALUE_REFERENCES)
54 + unordered_map(unordered_map const& other)
55 + : table_(other.table_)
59 unordered_map(unordered_map&& other)
60 : table_(other.table_, boost::unordered_detail::move_tag())
62 : table_(other.table_, a, boost::unordered_detail::move_tag())
66 + unordered_map& operator=(unordered_map const& x)
74 #if !defined(BOOST_NO_RVALUE_REFERENCES)
75 + unordered_multimap(unordered_multimap const& other)
76 + : table_(other.table_)
80 unordered_multimap(unordered_multimap&& other)
81 : table_(other.table_, boost::unordered_detail::move_tag())
83 : table_(other.table_, a, boost::unordered_detail::move_tag())
87 + unordered_multimap& operator=(unordered_multimap const& x)