OSDN Git Service

9de4523b20d9c89643c379b1532a8ebd4c22831f
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
1 2012-01-18  Benjamin Kosnik  <bkoz@redhat.com>
2
3         * configure.ac: Move epub checks...
4         * acinclude (GLIBCXX_CONFIGURE_DOCBOOK): ...here, use
5         test -f instead of AC_CHECK_FILES.
6
7 2012-01-18  François Dumont  <fdumont@gcc.gnu.org>
8             Roman Kononov  <roman@binarylife.net>
9
10         PR libstdc++/51866
11         * include/bits/hashtable.h (_Hashtable<>::_M_insert(_Arg, false_type)):
12         Do not keep a reference to a potentially moved instance.
13         * testsuite/23_containers/unordered_multiset/insert/51866.cc: New.
14         * testsuite/23_containers/unordered_multimap/insert/51866.cc: New.
15
16 2012-01-17  Benjamin Kosnik  <bkoz@redhat.com>
17
18         * doc/html/*: Regenerate.
19
20 2012-01-17  Benjamin Kosnik  <bkoz@redhat.com>
21
22         * configure.ac (BUILD_EPUB): Adjust for epub3.
23         * configure: Regenerate.
24         * Makefile.in: Same.
25         * doc/Makefile.am (stamp-epub-docbook): Update for epub3.
26         * doc/Makefile.in: Regenerate.
27         * include/Makefile.in: Same.
28         * libsupc++/Makefile.in: Same.
29         * po/Makefile.in: Same.
30         * python/Makefile.in: Same.
31         * src/Makefile.in: Same.
32         * testsuite/Makefile.in: Same.
33
34         * doc/xml/manual/documentation_hacking.xml: Update.
35
36 2012-01-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
37
38         PR target/47852
39         * configure.host (irix6.5*): Add -lpthread to OPT_LDFLAGS.
40
41 2012-01-14  Jonathan Wakely  <jwakely.gcc@gmail.com>
42
43         * include/bits/stl_iterator.h (reverse_iterator): Doxygen comments.
44
45 2012-01-13  François Dumont  <fdumont@gcc.gnu.org>
46
47         * include/bits/hashtable_policy.h (_Hash_node_base): New, use it as
48         base class of ...
49         (_Hash_node<Value, true>, _Hash_node<Value, false>): ... those.
50         * include/bits/hashtable.h (_Hashtable): Replace _M_begin_bucket_index
51         by _M_before_begin. Review implementation so that we do not need to
52         look for previous non-empty bucket when inserting nodes.
53
54 2012-01-09  Kai Tietz  <ktietz@redhat.com>
55
56         PR libstc++/51673 part 2
57         * config/abi/pre/gnu-versioned-namespace.ver: Adjusted new/delete
58         operators signature for LLP64 size_t, and adjusted signatures for
59         mt-allocator using size_t.
60
61 2012-01-09  Benjamin Kosnik  <bkoz@redhat.com>
62
63         PR libstc++/51673 part 1
64         * config/abi/pre/gnu-versioned-namespace.ver: Sync cxxabi symbols
65         with gnu.ver.
66
67 2012-01-09  Benjamin Kosnik  <bkoz@redhat.com>
68
69         * fragment.am (WARN_CXXFLAGS): Add -Wabi.
70         * Makefile.in: Regenerate.
71         * doc/Makefile.in: Same.
72         * include/Makefile.in: Same.
73         * libsupc++/Makefile.in: Same.
74         * src/Makefile.in: Same.
75         * testsuite/Makefile.in: Same.
76         * po/Makefile.in: Same.
77         * python/Makefile.in: Same.
78
79 2012-01-08  Jonathan Wakely  <jwakely.gcc@gmail.com>
80
81         * python/libstdcxx/v6/printers.py (StdForwardListPrinter): Add.
82         * testsuite/libstdc++-prettyprinters/cxx11.cc: New.
83
84 2012-01-06  Jason Merrill  <jason@redhat.com>
85
86         * testsuite/abi/demangle/regression/cw-16.cc (main): Adjust
87         expected demangling.
88
89 2012-01-06  Jonathan Wakely  <jwakely.gcc@gmail.com>
90
91         PR libstdc++/51504
92         * doc/xml/manual/debug.xml: Suggest using symbol interposition
93         to override symbols using annotation macros.
94
95 2012-01-05  François Dumont  <fdumont@gcc.gnu.org>
96
97         * include/bits/hashtable_policy.h (_Hashtable_base<>::_M_eq()):
98         protected rather than private, use it...
99         * include/bits/hashtable.h (_Hashtable<>::key_eq()): ... here.
100         * testsuite/23_containers/unordered_set/observers.cc: New.
101         * testsuite/23_containers/unordered_multiset/observers.cc: New.
102         * testsuite/23_containers/unordered_map/observers.cc: New.
103         * testsuite/23_containers/unordered_multimap/observers.cc: New.
104
105 2012-01-03  François Dumont  <fdumont@gcc.gnu.org>
106
107         * include/bits/hashtable_policy.h (_Ebo_helper<>): Rename to the more
108         specific _Hashtable_ebo_helper. Hide this implementation detail thanks
109         to private inheritance.
110
111 2012-01-03  Paolo Carlini  <paolo.carlini@oracle.com>
112
113         PR c++/51738
114         * testsuite/23_containers/map/element_access/39901.cc: New.