Makefile.am: Add new ptr_traits.h header.
[gcc.git] / libstdc++-v3 / ChangeLog
1 2011-05-28 Jonathan Wakely <jwakely.gcc@gmail.com>
2
3 * include/Makefile.am: Add new ptr_traits.h header.
4 * include/Makefile.in: Regenerate.
5 * include/bits/ptr_traits.h (pointer_traits): New.
6 * include/bits/allocator.h (allocator_traits): Add.
7 * include/ext/array_allocator.h (construct, destroy): Update C++0x
8 versions.
9 * include/ext/bitmap_allocator.h (construct, destroy): Likewise.
10 * include/ext/extptr_allocator.h (construct, destroy): Likewise.
11 * include/ext/malloc_allocator.h (construct, destroy): Likewise.
12 * include/ext/mt_allocator.h (construct, destroy): Likewise.
13 * include/ext/new_allocator.h (construct, destroy): Likewise.
14 * include/ext/pool_allocator.h (construct, destroy): Likewise.
15 * include/ext/throw_allocator.h (construct, destroy): Likewise.
16 * testsuite/20_util/allocator_traits/requirements/typedefs.cc: New.
17 * testsuite/20_util/allocator_traits/requirements/
18 explicit_instantiation.cc: New.
19 * testsuite/20_util/allocator_traits/members/max_size.cc: New.
20 * testsuite/20_util/allocator_traits/members/select.cc: New.
21 * testsuite/20_util/allocator_traits/members/construct.cc: New.
22 * testsuite/20_util/allocator_traits/members/allocate_hint.cc: New.
23 * testsuite/20_util/allocator_traits/members/destroy.cc: New.
24 * testsuite/20_util/pointer_traits/requirements/typedefs.cc: New.
25 * testsuite/20_util/pointer_traits/requirements/
26 explicit_instantiation.cc: New.
27
28 2011-05-28 Jonathan Wakely <jwakely.gcc@gmail.com>
29
30 * include/std/future (launch): Update enumerators and define
31 operators required for bitmask type. Remove trailing whitespace.
32 * src/future.cc: Remove trailing whitespace.
33 * testsuite/30_threads/async/any.cc: Adjust.
34 * testsuite/30_threads/async/sync.cc: Adjust.
35 * testsuite/30_threads/async/launch.cc: New.
36
37 2011-05-28 Jonathan Wakely <jwakely.gcc@gmail.com>
38
39 * include/std/future: Use noexcept.
40 * src/future.cc: Likewise.
41
42 2011-05-27 Jonathan Wakely <jwakely.gcc@gmail.com>
43
44 * include/std/thread (this_thread::sleep_until): Move after sleep_for.
45
46 2011-05-27 Paolo Carlini <paolo.carlini@oracle.com>
47
48 PR libstdc++/49187
49 * include/parallel/losertree.h: Add missing using declarations
50 of _Base::_M_comp.
51 * include/parallel/algobase.h: Include <parallel/algorithmfwd.h>.
52 * include/parallel/multiway_merge.h: Include <parallel/
53 multiseq_selection.h>, forward declare __merge_advance.
54 * include/parallel/multiseq_selection.h: Don't include <parallel/
55 sort.h> here.
56 * include/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp: Fix
57 qualification of upper_bound.
58
59 * testsuite/ext/pb_ds/regression/tree_no_data_map_rand_debug.cc:
60 Use dg-require-debug-mode.
61 * testsuite/ext/pb_ds/regression/tree_data_map_rand_debug.cc:
62 Likewise.
63 * testsuite/ext/pb_ds/regression/priority_queue_rand_debug.cc:
64 Likewise.
65 * testsuite/ext/pb_ds/regression/trie_no_data_map_rand_debug.cc:
66 Likewise.
67 * testsuite/ext/pb_ds/regression/trie_data_map_rand_debug.cc:
68 Likewise.
69 * testsuite/ext/pb_ds/regression/list_update_no_data_map_rand_debug.cc:
70 Likewise.
71 * testsuite/ext/pb_ds/regression/list_update_data_map_rand_debug.cc:
72 Likewise.
73 * testsuite/ext/pb_ds/regression/hash_no_data_map_rand_debug.cc:
74 Likewise.
75 * testsuite/ext/pb_ds/regression/hash_data_map_rand_debug.cc:
76 Likewise.
77
78 * include/parallel/algo.h: Minor uglification fixes.
79
80 2011-05-26 Paolo Carlini <paolo.carlini@oracle.com>
81
82 * src/list.cc: Use noexcept per the FDIS.
83 * src/compatibility-list-2.cc: Likewise.
84 * include/debug/set.h: Likewise.
85 * include/debug/unordered_map: Likewise.
86 * include/debug/multiset.h: Likewise.
87 * include/debug/forward_list: Likewise.
88 * include/debug/unordered_set: Likewise.
89 * include/debug/vector: Likewise.
90 * include/debug/map.h: Likewise.
91 * include/debug/deque: Likewise.
92 * include/debug/list: Likewise.
93 * include/debug/multimap.h: Likewise.
94 * include/profile/set.h: Likewise.
95 * include/profile/unordered_map: Likewise.
96 * include/profile/multiset.h: Likewise.
97 * include/profile/forward_list: Likewise.
98 * include/profile/vector: Likewise.
99 * include/profile/unordered_set: Likewise.
100 * include/profile/map.h: Likewise.
101 * include/profile/deque: Likewise.
102 * include/profile/list: Likewise.
103 * include/profile/multimap.h: Likewise.
104 * include/bits/hashtable.h: Likewise.
105 * include/bits/stl_list.h: Likewise.
106 * include/bits/stl_map.h: Likewise.
107 * include/bits/hashtable_policy.h: Likewise.
108 * include/bits/stl_set.h: Likewise.
109 * include/bits/forward_list.h: Likewise.
110 * include/bits/stl_multimap.h: Likewise.
111 * include/bits/stl_vector.h: Likewise.
112 * include/bits/stl_deque.h: Likewise.
113 * include/bits/stl_multiset.h: Likewise.
114 * include/bits/stl_bvector.h: Likewise.
115 * include/bits/stl_tree.h: Likewise.
116
117 2011-05-25 Paolo Carlini <paolo.carlini@oracle.com>
118
119 * include/bits/stl_queue.h: Use noexcept per the FDIS.
120 * include/bits/stl_stack.h: Likewise.
121
122 2011-05-25 Paolo Carlini <paolo.carlini@oracle.com>
123
124 * config/abi/pre/gnu.ver: Correct last change, export instead
125 at the existing @3.4.16.
126 * configure.ac: Revert last change.
127 * testsuite/util/testsuite_abi.cc: Likewise.
128 * configure: Regenerate.
129
130 2011-05-26 Jonathan Wakely <jwakely.gcc@gmail.com>
131
132 * doc/xml/manual/documentation_hacking.xml: Minor corrections.
133
134 2011-05-26 Jonathan Wakely <jwakely.gcc@gmail.com>
135
136 * include/std/mutex: Add doxygen comments.
137
138 2011-05-25 Paolo Carlini <paolo.carlini@oracle.com>
139
140 * config/abi/pre/gnu.ver: Export recently added basic_streambuf
141 and basic_stringbuf symbols @3.4.17.
142 * configure.ac: Update.
143 * testsuite/util/testsuite_abi.cc: Likewise.
144 * configure: Regenerate.
145
146 2011-05-26 Jonathan Wakely <jwakely.gcc@gmail.com>
147
148 * libsupc++/guard.cc: Fix comments.
149
150 2011-05-25 Ian Lance Taylor <iant@google.com>
151
152 PR libstdc++/49060
153 * include/backward/hashtable.h (hashtable::erase): Don't crash if
154 erasing first and another element with a reference to the other
155 element.
156 * testsuite/backward/hash_set/49060.cc: New.
157
158 2011-05-25 Paolo Carlini <paolo.carlini@oracle.com>
159
160 * include/bits/random.h (random_device::min, max): Specify constexpr.
161
162 2011-05-25 Paolo Carlini <paolo.carlini@oracle.com>
163
164 * include/std/thread: Use noexcept throughout per the FDIS.
165 * include/std/mutex: Likewise.
166
167 2011-05-24 Paolo Carlini <paolo.carlini@oracle.com>
168
169 * testsuite/20_util/duration/arithmetic/dr2020.cc: Fix typo.
170
171 2011-05-24 Paolo Carlini <paolo.carlini@oracle.com>
172
173 PR libstdc++/49151
174 * include/std/chrono (operator+, operator-, operator*, operator/,
175 operator&): Implement LWG 2020 [WP]; specify constexpr.
176 * testsuite/20_util/duration/arithmetic/dr2020.cc: New.
177
178 2011-05-24 Paolo Carlini <paolo.carlini@oracle.com>
179
180 PR libstdc++/49141
181 * testsuite/26_numerics/complex/cons/48760.cc: Use dg-require-c-std.
182 * testsuite/26_numerics/complex/cons/48760_c++0x.cc: Likewise.
183 * testsuite/26_numerics/headers/cmath/19322.cc: Likewise.
184
185 2011-05-24 Paolo Carlini <paolo.carlini@oracle.com>
186
187 * include/bits/c++config (_GLIBCXX_NOTHROW): Update for noexcept.
188 * testsuite/ext/profile/mutex_extensions_neg.cc: Adjust dg-error
189 line number.
190
191 2011-05-23 Benjamin Kosnik <bkoz@redhat.com>
192
193 PR libstdc++/37144
194 PR libstdc++/28457
195 Interface changes for ext/pb_ds.
196 PB_DS_BASE_C_DEC to unique PB_DS_*_BASE macros.
197 * include/ext/pb_ds/assoc_container.hpp (container_base): Remove.
198 (basic_hash_table, basic_branch, list_update): Derive from
199 container_base_dispatch.
200 * include/ext/pb_ds/list_update_policy.hpp (null_lu_metadata): Remove.
201 (move_to_front_lu_policy): To lu_move_to_front_policy.
202 (counter_lu_policy): To lu_counter_policy.
203 * include/ext/pb_ds/tree_policy.hpp (null_tree_node_update): Remove.
204 * include/ext/pb_ds/tag_and_trait.hpp (container_base_dispatch): Adjust
205 template parameters, declare here.
206 (null_mapped_type) Remove.
207 (null_type): Just use this for template tricks everywhere.
208 * include/ext/pb_ds/hash_policy.hpp (null_hash_fn, null_probe_fn):
209 Remove.
210 * include/ext/pb_ds/trie_policy.hpp (null_trie_node_update): Remove.
211 (string_trie_e_access_traits): To trie_string_access_traits.
212 * include/ext/pb_ds/priority_queue.hpp: Use container_base_dispatch.
213
214 File changes.
215 * include/Makefile.am (pb_headers): Removed and changed file names.
216 * include/Makefile.in: Regenerated.
217 * include/ext/pb_ds/detail/basic_types.hpp: Remove.
218 * include/ext/pb_ds/detail/bin_search_tree_/
219 cond_dtor_entry_dealtor.hpp: Remove.
220 * include/ext/pb_ds/detail/bin_search_tree_/
221 cond_key_dtor_entry_dealtor.hpp: Remove.
222 * include/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp: Move..
223 * include/ext/pb_ds/detail/binary_heap_/
224 point_const_iterator.hpp: ..here.
225 * include/ext/pb_ds/detail/basic_tree_policy: Move to...
226 * include/ext/pb_ds/detail/branch_policy: This.
227 * include/ext/pb_ds/detail/branch_policy/
228 basic_tree_policy_base.hpp: Move...
229 * include/ext/pb_ds/detail/branch_policy/branch_policy.hpp: ...here.
230 * include/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp: Add.
231 * include/ext/pb_ds/detail/branch_policy/traits.hpp: Add.
232 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
233 null_metadata.hpp: Remove.
234 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
235 const_point_iterator.hpp: Move...
236 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
237 point_const_iterator.hpp: ...here.
238 * include/ext/pb_ds/detail/list_update_policy/
239 counter_lu_metadata.hpp: Move..
240 * include/ext/pb_ds/detail/list_update_policy/
241 lu_counter_metadata.hpp: ...here.
242 * include/ext/pb_ds/detail/list_update_policy/
243 counter_lu_policy_imp.hpp: Remove.
244 * include/ext/pb_ds/detail/list_update_policy/
245 mtf_lu_policy_imp.hpp: Remove.
246 * include/ext/pb_ds/detail/trie_policy/
247 string_trie_e_access_traits_imp.hpp: Move...
248 * include/ext/pb_ds/detail/trie_policy/
249 sample_trie_access_traits.hpp: ...here.
250 * include/ext/pb_ds/detail/trie_policy/
251 sample_trie_e_access_traits.hpp: Move...
252 * include/ext/pb_ds/detail/trie_policy/
253 trie_string_access_traits_imp.hpp: ...here.
254 * include/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp: Remove.
255 * include/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp: Remove.
256 * include/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp: Remove.
257 * include/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp: New, fold all
258 types found in the following files into pat_trie_base.
259 * include/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp: Folded.
260 * include/ext/pb_ds/detail/pat_trie_/
261 cond_dtor_entry_dealtor.hpp: Folded.
262 * include/ext/pb_ds/detail/pat_trie_/child_iterator.hpp: Folded.
263 * include/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp: Folded.
264 * include/ext/pb_ds/detail/pat_trie_/head.hpp: Folded.
265 * include/ext/pb_ds/detail/pat_trie_/leaf.hpp: Folded.
266 * include/ext/pb_ds/detail/pat_trie_/node_base.hpp: Folded.
267 * include/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp: Folded.
268 * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Folded.
269 * include/ext/pb_ds/detail/pat_trie_/node_iterators.hpp: Folded.
270 * include/ext/pb_ds/detail/pat_trie_/point_iterators.hpp: Folded.
271 * include/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp: Move...
272 * include/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp: ...here.
273 * include/ext/pb_ds/detail/unordered_iterator/
274 const_point_iterator.hpp: Move...
275 * include/ext/pb_ds/detail/unordered_iterator/
276 point_const_iterator.hpp: ...here.
277
278
279 Adjust for above changes.
280 * include/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp: Same.
281 * include/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp: Same.
282 * include/ext/pb_ds/detail/resize_policy/
283 sample_resize_trigger.hpp: Same.
284 * include/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp: Same.
285 * include/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp: Same.
286 * include/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp: Same.
287 * include/ext/pb_ds/detail/binomial_heap_base_/
288 binomial_heap_base_.hpp: Same.
289 * include/ext/pb_ds/detail/binomial_heap_base_/
290 constructors_destructor_fn_imps.hpp: Same.
291 * include/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp: Same.
292 * include/ext/pb_ds/detail/binomial_heap_base_/
293 split_join_fn_imps.hpp: Same.
294 * include/ext/pb_ds/detail/container_base_dispatch.hpp: Same. Adjust
295 for template parameter ordering change.
296 * include/ext/pb_ds/detail/cc_hash_table_map_/
297 erase_store_hash_fn_imps.hpp: Same.
298 * include/ext/pb_ds/detail/cc_hash_table_map_/
299 constructor_destructor_no_store_hash_fn_imps.hpp: Same.
300 * include/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp: Same.
301 * include/ext/pb_ds/detail/cc_hash_table_map_/
302 insert_no_store_hash_fn_imps.hpp: Same.
303 * include/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp: Same.
304 * include/ext/pb_ds/detail/cc_hash_table_map_/
305 policy_access_fn_imps.hpp: Same.
306 * include/ext/pb_ds/detail/cc_hash_table_map_/
307 resize_store_hash_fn_imps.hpp: Same.
308 * include/ext/pb_ds/detail/cc_hash_table_map_/
309 constructor_destructor_store_hash_fn_imps.hpp: Same.
310 * include/ext/pb_ds/detail/cc_hash_table_map_/
311 insert_store_hash_fn_imps.hpp: Same.
312 * include/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp: Same.
313 * include/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp: Same.
314 * include/ext/pb_ds/detail/cc_hash_table_map_/
315 entry_list_fn_imps.hpp: Same.
316 * include/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp: Same.
317 * include/ext/pb_ds/detail/cc_hash_table_map_/
318 find_store_hash_fn_imps.hpp: Same.
319 * include/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp: Same.
320 * include/ext/pb_ds/detail/cc_hash_table_map_/
321 debug_no_store_hash_fn_imps.hpp: Same.
322 * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same.
323 * include/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp: Same.
324 * include/ext/pb_ds/detail/cc_hash_table_map_/
325 constructor_destructor_fn_imps.hpp: Same.
326 * include/ext/pb_ds/detail/cc_hash_table_map_/
327 cond_key_dtor_entry_dealtor.hpp: Same.
328 * include/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp: Same.
329 * include/ext/pb_ds/detail/cc_hash_table_map_/
330 debug_store_hash_fn_imps.hpp: Same.
331 * include/ext/pb_ds/detail/cc_hash_table_map_/
332 erase_no_store_hash_fn_imps.hpp: Same.
333 * include/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp: Same.
334 * include/ext/pb_ds/detail/cc_hash_table_map_/
335 iterators_fn_imps.hpp: Same.
336 * include/ext/pb_ds/detail/cc_hash_table_map_/
337 resize_no_store_hash_fn_imps.hpp: Same.
338 * include/ext/pb_ds/detail/cc_hash_table_map_/
339 standard_policies.hpp: Same.
340 * include/ext/pb_ds/detail/tree_trace_base.hpp: Same.
341 * include/ext/pb_ds/detail/unordered_iterator/iterator.hpp: Same.
342 * include/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp: Same.
343 * include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp: Same.
344 * include/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp: Same.
345 * include/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp: Same.
346 * include/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp: Same.
347 * include/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp: Same.
348 * include/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp: Same.
349 * include/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp: Same.
350 * include/ext/pb_ds/detail/pat_trie_/
351 constructors_destructor_fn_imps.hpp: Same.
352 * include/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp: Same.
353 * include/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp: Same.
354 * include/ext/pb_ds/detail/pat_trie_/traits.hpp: Same.
355 * include/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp: Same.
356 * include/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp: Same.
357 * include/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp: Same.
358 * include/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp: Same.
359 * include/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp: Same.
360 * include/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp: Same.
361 * include/ext/pb_ds/detail/bin_search_tree_/
362 policy_access_fn_imps.hpp: Same.
363 * include/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp: Same.
364 * include/ext/pb_ds/detail/bin_search_tree_/
365 constructors_destructor_fn_imps.hpp: Same.
366 * include/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp: Same.
367 * include/ext/pb_ds/detail/bin_search_tree_/traits.hpp: Same.
368 * include/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp: Same.
369 * include/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp: Same.
370 * include/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp: Same.
371 * include/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp: Same.
372 * include/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp: Same.
373 * include/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp: Same.
374 * include/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp: Same.
375 * include/ext/pb_ds/detail/bin_search_tree_/
376 split_join_fn_imps.hpp: Same.
377 * include/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp: Same.
378 * include/ext/pb_ds/detail/list_update_policy/
379 sample_update_policy.hpp: Same.
380 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
381 trace_fn_imps.hpp: Same.
382 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
383 erase_fn_imps.hpp: Same.
384 * include/ext/pb_ds/detail/gp_hash_table_map_/
385 erase_store_hash_fn_imps.hpp: Same.
386 * include/ext/pb_ds/detail/gp_hash_table_map_/
387 constructor_destructor_no_store_hash_fn_imps.hpp: Same.
388 * include/ext/pb_ds/detail/gp_hash_table_map_/
389 insert_no_store_hash_fn_imps.hpp: Same.
390 * include/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp: Same.
391 * include/ext/pb_ds/detail/gp_hash_table_map_/
392 policy_access_fn_imps.hpp: Same.
393 * include/ext/pb_ds/detail/gp_hash_table_map_/
394 resize_store_hash_fn_imps.hpp: Same.
395 * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same.
396 * include/ext/pb_ds/detail/gp_hash_table_map_/
397 constructor_destructor_store_hash_fn_imps.hpp: Same.
398 * include/ext/pb_ds/detail/gp_hash_table_map_/
399 insert_store_hash_fn_imps.hpp: Same.
400 * include/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp: Same.
401 * include/ext/pb_ds/detail/gp_hash_table_map_/
402 iterator_fn_imps.hpp: Same.
403 * include/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp: Same.
404 * include/ext/pb_ds/detail/gp_hash_table_map_/
405 find_no_store_hash_fn_imps.hpp: Same.
406 * include/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp: Same.
407 * include/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp: Same.
408 * include/ext/pb_ds/detail/gp_hash_table_map_/
409 find_store_hash_fn_imps.hpp: Same.
410 * include/ext/pb_ds/detail/gp_hash_table_map_/
411 debug_no_store_hash_fn_imps.hpp: Same.
412 * include/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp: Same.
413 * include/ext/pb_ds/detail/gp_hash_table_map_/
414 constructor_destructor_fn_imps.hpp: Same.
415 * include/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp: Same.
416 * include/ext/pb_ds/detail/gp_hash_table_map_/
417 debug_store_hash_fn_imps.hpp: Same.
418 * include/ext/pb_ds/detail/gp_hash_table_map_/
419 erase_no_store_hash_fn_imps.hpp: Same.
420 * include/ext/pb_ds/detail/gp_hash_table_map_/
421 resize_no_store_hash_fn_imps.hpp: Same.
422 * include/ext/pb_ds/detail/gp_hash_table_map_/
423 standard_policies.hpp: Same.
424 * include/ext/pb_ds/detail/standard_policies.hpp: Same.
425 * include/ext/pb_ds/detail/types_traits.hpp: Same.
426 * include/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp: Same.
427 * include/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp: Same.
428 * include/ext/pb_ds/detail/binary_heap_/const_iterator.hpp: Same.
429 * include/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp: Same.
430 * include/ext/pb_ds/detail/binary_heap_/
431 constructors_destructor_fn_imps.hpp: Same.
432 * include/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp: Same.
433 * include/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp: Same.
434 * include/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp: Same.
435 * include/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp: Same.
436 * include/ext/pb_ds/detail/binary_heap_/entry_pred.hpp: Same.
437 * include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp: Same.
438 * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp: Same.
439 * include/ext/pb_ds/detail/binary_heap_/resize_policy.hpp: Same.
440 * include/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp: Same.
441 * include/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp: Same.
442 * include/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp: Same.
443 * include/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp: Same.
444 * include/ext/pb_ds/detail/tree_policy/
445 sample_tree_node_update.hpp: Same.
446 * include/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp: Same.
447 * include/ext/pb_ds/detail/trie_policy/
448 sample_trie_node_update.hpp: Same.
449 * include/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp: Same.
450 * include/ext/pb_ds/detail/trie_policy/
451 prefix_search_node_update_imp.hpp: Same.
452 * include/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp: Same.
453 * include/ext/pb_ds/detail/cond_dealtor.hpp: Same.
454 * include/ext/pb_ds/detail/priority_queue_base_dispatch.hpp: Same.
455 Adjust for template parameter change, fold into
456 container_base_dispatch.
457 * include/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp: Same.
458 * include/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp: Same.
459 * include/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp: Same.
460 * include/ext/pb_ds/detail/pairing_heap_/
461 constructors_destructor_fn_imps.hpp: Same.
462 * include/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp: Same.
463 * include/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp: Same.
464 * include/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp: Same.
465 * include/ext/pb_ds/detail/binomial_heap_/
466 constructors_destructor_fn_imps.hpp: Same.
467 * include/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp: Same.
468 * include/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp: Same.
469 * include/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp: Same.
470 * include/ext/pb_ds/detail/type_utils.hpp: Same.
471 * include/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp: Same.
472 * include/ext/pb_ds/detail/eq_fn/eq_by_less.hpp: Same.
473 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
474 policy_access_fn_imps.hpp: Same.
475 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
476 left_child_next_sibling_heap_.hpp: Same.
477 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
478 const_iterator.hpp: Same.
479 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
480 insert_fn_imps.hpp: Same.
481 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
482 constructors_destructor_fn_imps.hpp: Same.
483 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
484 debug_fn_imps.hpp: Same.
485 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
486 node.hpp: Same.
487 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
488 info_fn_imps.hpp: Same.
489 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
490 iterators_fn_imps.hpp: Same.
491 * include/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp: Same.
492 * include/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp: Same.
493 * include/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp: Same.
494 * include/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp: Same.
495 * include/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp: Same.
496 * include/ext/pb_ds/detail/thin_heap_/
497 constructors_destructor_fn_imps.hpp: Same.
498 * include/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp: Same.
499 * include/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp: Same.
500 * include/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp: Same.
501 * include/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp: Same.
502 * include/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp: Same.
503 * include/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp: Same.
504 * include/ext/pb_ds/detail/ov_tree_map_/
505 constructors_destructor_fn_imps.hpp: Same.
506 * include/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp: Same.
507 * include/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp: Same.
508 * include/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp: Same.
509 * include/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp: Same.
510 * include/ext/pb_ds/detail/ov_tree_map_/traits.hpp: Same.
511 * include/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp: Same.
512 * include/ext/pb_ds/detail/debug_map_base.hpp: Same.
513 * include/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp: Same.
514 * include/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp: Same.
515 * include/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp: Same.
516 * include/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp: Same.
517 * include/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp: Same.
518 * include/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp: Same.
519 * include/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp: Same.
520 * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp: Same.
521 * include/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp: Same.
522 * include/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp: Same.
523 * include/ext/pb_ds/detail/splay_tree_/
524 constructors_destructor_fn_imps.hpp: Same.
525 * include/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp: Same.
526 * include/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp: Same.
527 * include/ext/pb_ds/detail/splay_tree_/node.hpp: Same.
528 * include/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp: Same.
529 * include/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp: Same.
530 * include/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp: Same.
531 * include/ext/pb_ds/detail/splay_tree_/traits.hpp: Same.
532 * include/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp: Same.
533 * include/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp: Same.
534 * include/ext/pb_ds/detail/list_update_map_/
535 entry_metadata_base.hpp: Same.
536 * include/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp: Same.
537 * include/ext/pb_ds/detail/list_update_map_/lu_map_.hpp: Same.
538 * include/ext/pb_ds/detail/list_update_map_/
539 constructor_destructor_fn_imps.hpp: Same.
540 * include/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp: Same.
541 * include/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp: Same.
542 * include/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp: Same.
543 * include/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp: Same.
544 * include/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp: Same.
545 * include/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp: Same.
546 * include/ext/pb_ds/detail/rc_binomial_heap_/
547 rc_binomial_heap_.hpp: Same.
548 * include/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp: Same.
549 * include/ext/pb_ds/detail/rc_binomial_heap_/
550 constructors_destructor_fn_imps.hpp: Same.
551 * include/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp: Same.
552 * include/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp: Same.
553 * include/ext/pb_ds/detail/rc_binomial_heap_/
554 split_join_fn_imps.hpp: Same.
555 * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp: Same.
556 * include/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp: Same.
557 * include/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp: Same.
558 * include/ext/pb_ds/detail/rb_tree_map_/
559 constructors_destructor_fn_imps.hpp: Same.
560 * include/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp: Same.
561 * include/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp: Same.
562 * include/ext/pb_ds/detail/rb_tree_map_/node.hpp: Same.
563 * include/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp: Same.
564 * include/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp: Same.
565 * include/ext/pb_ds/detail/rb_tree_map_/traits.hpp: Same.
566
567
568 Documentation changes.
569 * include/ext/pb_ds/*: Add doxygen markup.
570 * doc/doxygen/user.cfg.in: Add details for extracting comments
571 from pb_ds.
572 * scripts/run_doxygen: Fixup __gnu_pb_ds::detail.
573 * scripts/make_graph.py: Move to svg output. Re-format generated tables.
574
575 * doc/Makefile.am (stamp-html-copy): New rule.
576 (stamp-html): Use it to copy non-generated files into html docs.
577 * doc/Makefile.in: Regenerated.
578
579 * doc/html/ext/pb_ds/sample_trie_e_access_traits.html: Move...
580 * doc/html/ext/pb_ds/trie_string_access_traits.html: ...here.
581 * doc/html/ext/pb_ds/string_trie_e_access_traits.html: Move..
582 * doc/html/ext/pb_ds/sample_trie_access_traits.html: ...here.
583
584 * doc/html/ext/pb_ds/tree_text_lor_find_timing_test_local.png,
585 hash_random_int_erase_mem_usage_test_local.png,
586 multimap_text_insert_mem_usage_test_small_s2p_hash_local.png,
587 tree_text_insert_timing_test_pat_trie_local.png ,
588 multimap_text_insert_mem_usage_test_small_s2p_tree_local.png ,
589 priority_queue_text_modify_down_timing_test_local.png,
590 gp_hash_random_int_subscript_timing_test_find_local.png,
591 text_find_timing_test_hash_local.png,
592 multimap_text_insert_timing_test_small_s2p_hash_local.png,
593 multimap_text_insert_timing_test_small_s2p_tree_local.png,
594 multimap_text_insert_mem_usage_test_large_s2p_hash_local.png,
595 multimap_text_insert_mem_usage_test_large_s2p_tree_local.png,
596 multimap_text_insert_timing_test_large_s2p_hash_local.png,
597 hash_zlob_random_int_find_timing_test_local.png,
598 multimap_text_insert_timing_test_large_s2p_tree_local.png,
599 binary_priority_queue_random_int_push_timing_test_local.png,
600 priority_queue_text_pop_mem_usage_test_local.png,
601 priority_queue_text_modify_down_timing_test_pairing_thin_local.png,
602 tree_split_join_timing_test_local.png,
603 multimap_text_find_timing_test_small_s2p_hash_local.png,
604 ccgp_hash_random_int_subscript_timing_test_insert_local.png,
605 priority_queue_random_int_push_pop_timing_test_local.png,
606 multimap_text_find_timing_test_small_s2p_tree_local.png,
607 gp_hash_random_int_subscript_timing_test_insert_local.png,
608 priority_queue_text_push_timing_test_local.png,
609 cc_hash_random_int_subscript_timing_test_find_local.png,
610 tree_text_insert_timing_test_vector_tree_local.png,
611 multimap_text_find_timing_test_large_s2p_hash_local.png,
612 pairing_priority_queue_text_push_timing_test_local.png,
613 tree_order_statistics_timing_test_local.png,
614 priority_queue_text_push_pop_timing_test_local.png,
615 text_find_timing_test_tree_like_local.png,
616 multimap_text_find_timing_test_large_s2p_tree_local.png,
617 priority_queue_text_modify_up_timing_test_pairing_thin_local.png,
618 cc_hash_random_int_subscript_timing_test_insert_local.png,
619 priority_queue_text_modify_up_timing_test_local.png,
620 random_int_find_find_timing_test_tree_local.png,
621 priority_queue_random_int_push_timing_test_local.png,
622 tree_text_insert_timing_test_node_tree_local.png,
623 pairing_priority_queue_text_push_pop_timing_test_local.png,
624 gp_hash_random_int_find_timing_test_local.png,
625 cc_hash_random_int_find_timing_test_local.png,
626 priority_queue_text_join_timing_test_local.png: Update local pngs.
627
628
629 Testsuite changes.
630 * testsuite/ext/pb_ds/regression/tree_no_data_map_rand_debug.cc: New.
631 * testsuite/ext/pb_ds/regression/tree_data_map_rand_debug.cc: New.
632 * testsuite/ext/pb_ds/regression/priority_queue_rand_debug.cc: New.
633 * testsuite/ext/pb_ds/regression/trie_no_data_map_rand_debug.cc: New.
634 * testsuite/ext/pb_ds/regression/trie_data_map_rand_debug.cc: New.
635 * testsuite/ext/pb_ds/regression/list_update_no_data_map_rand_debug.cc:
636 New.
637 * testsuite/ext/pb_ds/regression/list_update_data_map_rand_debug.cc:
638 New.
639 * testsuite/ext/pb_ds/regression/hash_no_data_map_rand_debug.cc: New.
640 * testsuite/ext/pb_ds/regression/hash_data_map_rand_debug.cc: New.
641
642 * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: Fix typo.
643
644 * testsuite/ext/pb_ds/example/basic_set.cc: Update.
645 * testsuite/ext/pb_ds/example/ranged_hash.cc: Same.
646 * testsuite/ext/pb_ds/example/tree_order_statistics.cc: Same.
647 * testsuite/ext/pb_ds/example/trie_prefix_search.cc: Same.
648 * testsuite/ext/pb_ds/example/trie_dna.cc: Same.
649 * testsuite/ext/pb_ds/example/tree_intervals.cc: Same.
650 * testsuite/ext/pb_ds/example/basic_multimap.cc: Same.
651 * testsuite/performance/ext/pb_ds/hash_random_int_erase_mem_usage.cc:
652 Same.
653 * testsuite/performance/ext/pb_ds/tree_split_join_timing.cc: Same.
654 * testsuite/performance/ext/pb_ds/tree_order_statistics_timing.cc: Same.
655 * testsuite/data/make_graph_test_infos.xml: Same.
656 * testsuite/util/regression/common_type.hpp: Same.
657 * testsuite/util/regression/trait/assoc/native_type_trait.hpp: Same.
658 * testsuite/util/regression/trait/assoc/trait.hpp: Same.
659 * testsuite/util/regression/trait/assoc/type_trait.hpp: Same.
660 * testsuite/util/regression/rand/priority_queue/
661 rand_regression_test.hpp: Same.
662 * testsuite/util/regression/rand/priority_queue/
663 container_rand_regression_test.tcc: Same.
664 * testsuite/util/regression/rand/assoc/rand_regression_test.hpp: Same.
665 * testsuite/util/regression/rand/assoc/container_rand_regression_test.h
666 * testsuite/util/regression/rand/assoc/
667 container_rand_regression_test.tcc: Same.
668 * testsuite/util/native_type/native_priority_queue.hpp: Same.
669 * testsuite/util/native_type/native_multimap.hpp: Same.
670 * testsuite/util/native_type/native_hash_multimap.hpp: Same.
671 * testsuite/util/native_type/native_set.hpp: Same.
672 * testsuite/util/native_type/native_map.hpp: Same.
673 * testsuite/util/native_type/native_hash_set.hpp: Same.
674 * testsuite/util/native_type/native_hash_map.hpp: Same.
675 * testsuite/util/testsuite_containers.h
676 * testsuite/util/common_type/priority_queue/common_type.hpp: Same.
677 * testsuite/util/common_type/assoc/common_type.hpp: Same.
678 * testsuite/util/common_type/assoc/string_form.hpp: Same.
679 * testsuite/util/common_type/assoc/template_policy.hpp: Same.
680 * testsuite/util/common_type/assoc/detail/
681 trigger_policy_string_form.hpp: Same.
682 * testsuite/util/common_type/assoc/detail/ds_string_form.hpp: Same.
683 * testsuite/util/common_type/assoc/detail/
684 size_policy_string_form.hpp: Same.
685 * testsuite/util/common_type/assoc/detail/
686 probe_fn_string_form.hpp: Same.
687 * testsuite/util/common_type/assoc/detail/
688 tree_supports_order_statistics.hpp: Same.
689 * testsuite/util/common_type/assoc/detail/
690 trie_supports_prefix_search.hpp: Same.
691 * testsuite/util/common_type/assoc/detail/
692 list_update_policy_string_form.hpp: Same.
693 * testsuite/util/common_type/assoc/detail/
694 trie_supports_order_statistics.hpp: Same.
695 * testsuite/util/common_type/assoc/native_set.hpp: Same.
696 * testsuite/util/performance/assoc/timing/common_type.hpp: Same.
697 * testsuite/util/performance/assoc/timing/multimap_find_test.hpp: Same.
698 * testsuite/util/performance/assoc/multimap_common_type.hpp: Same.
699
700 2011-05-23 Paolo Carlini <paolo.carlini@oracle.com>
701
702 * include/bits/streambuf_iterator.h: Use noexcept per the FDIS.
703 (istreambuf_iterator<>::istreambuf_iterator(const
704 istreambuf_iterator&), ~istreambuf_iterator()): Add defaulted
705 in C++0x mode.
706
707 2011-05-23 Jason Merrill <jason@redhat.com>
708
709 * libsupc++/exception_ptr.h: Fix compilation in C++0x mode.
710
711 2011-05-22 Jonathan Wakely <jwakely.gcc@gmail.com>
712
713 * testsuite/20_util/bind/cv_quals_2.cc: New.
714
715 2011-05-22 Paolo Carlini <paolo.carlini@oracle.com>
716
717 PR libstdc++/49058
718 * include/std/functional (_Bind<_Functor(_Bound_args...)>::
719 operator()(_Args&&...)): Don't cv qualify _Functor directly
720 in the default template argument, SFINAE doesn't apply when
721 the functor has no arguments.
722 * testsuite/20_util/bind/49058_1.cc: New.
723 * testsuite/20_util/bind/49058_2.cc: Likewise.
724
725 2011-05-21 Paolo Carlini <paolo.carlini@oracle.com>
726
727 * include/bits/unique_ptr.h: Use noexcept per the FDIS.
728
729 2011-05-20 Paolo Carlini <paolo.carlini@oracle.com>
730
731 * testsuite/21_strings/basic_string/requirements/exception/
732 propagation_consistent.cc: Fix vs POD-ness of value_type.
733 * testsuite/21_strings/basic_string/requirements/exception/
734 basic.cc: Likewise.
735 * testsuite/ext/vstring/requirements/exception/
736 propagation_consistent.cc: Likewise.
737 * testsuite/ext/vstring/requirements/exception/basic.cc: Likewise.
738
739 2011-05-20 Paolo Carlini <paolo.carlini@oracle.com>
740
741 * include/bits/char_traits.h: Use noexcept throughout.
742 * include/std/typeindex: Likewise.
743
744 * include/std/tuple (_Tuple_impl<>_Tuple_impl(_Tuple_impl&&)): Use
745 noexcept; adjust callers.
746 * include/bits/stl_pair.h (pair<>::pair(pair<>&&)): Use noexcept.
747 * testsuite/20_util/tuple/cons/noexcept_move_construct.cc: New.
748 * testsuite/20_util/pair/cons/noexcept_move_construct.cc: Likewise.
749 * testsuite/20_util/pair/noexcept_swap.cc: Likewise.
750 * testsuite/20_util/pair/noexcept_move_assign.cc: Likewise.
751 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust dg-warning
752 line numbers.
753
754 2011-05-20 Jason Merrill <jason@redhat.com>
755
756 * include/ext/pb_ds/assoc_container.hpp: Explicitly qualify calls to
757 functions from dependent bases.
758 * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp: Likewise.
759 * include/ext/pb_ds/detail/rb_tree_map_/
760 split_join_fn_imps.hpp: Likewise.
761 * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp: Likewise.
762 * include/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp: Likewise.
763 * include/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp: Likewise.
764 * include/ext/pb_ds/detail/splay_tree_/
765 split_join_fn_imps.hpp: Likewise.
766 * include/ext/pb_ds/detail/tree_policy/
767 order_statistics_imp.hpp: Likewise.
768 * include/ext/pb_ds/detail/trie_policy/
769 prefix_search_node_update_imp.hpp: Likewise.
770 * include/ext/rc_string_base.h: Likewise.
771 * include/ext/rope: Likewise.
772 * include/ext/ropeimpl.h: Likewise.
773 * testsuite/util/exception/safety.h: Likewise.
774 * testsuite/util/native_type/native_priority_queue.hpp: Likewise.
775 * testsuite/util/testsuite_io.h: Likewise.
776 * include/std/functional: Declare mem_fn earlier.
777 * include/tr1/functional: Likewise.
778 * include/tr1/exp_integral.tcc: Declare __expint_E1 earlier.
779
780 2011-05-19 Paolo Carlini <paolo.carlini@oracle.com>
781
782 * include/std/tuple (tuple_element<__i, const _Tp>,
783 tuple_element<__i, volatile _Tp>, tuple_element<__i,
784 const volatile _Tp>, tuple_size<const _Tp>, tuple_size<volatile _Tp>,
785 tuple_size<const volatile _Tp>): Add.
786 * include/std/utility (tuple_size<std::pair<_Tp1, _Tp2>>): Tweak.
787 * include/std/array (tuple_size<array<_Tp, _Nm>>): Likewise.
788 * testsuite/20_util/tuple/cv_tuple_size.cc: New.
789 * testsuite/20_util/tuple/cv_tuple_element.cc: Likewise.
790 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Tweak dg-warning
791 line number.
792
793 2011-05-19 Paolo Carlini <paolo.carlini@oracle.com>
794
795 * include/std/tuple (tuple<>::operator=(tuple&&)): Specify as
796 noexcept.
797 (__get_helper): Likewise.
798 (_Head_base<>::_M_head, _Tuple_impl<>::_M_head, _M_tail): Likewise.
799 * include/bits/move.h (swap): Likewise.
800 * include/bits/algorithmfwd.h (swap): Adjust.
801 * include/bits/stl_pair.h (pair<>::operator=(pair&&)): Spec noexcept.
802 * testsuite/util/testsuite_allocator.h (uneq_allocator): In C++0x
803 mode, prefer delete to access control to make the type not copy
804 assignable.
805 * testsuite/util/testsuite_tr1.h: Add test classes.
806 * testsuite/20_util/tuple/noexcept_swap.cc: New.
807 * testsuite/20_util/tuple/noexcept_move_assign.cc: Likewise.
808 * testsuite/25_algorithms/reverse/moveable.cc: Likewise, prefer
809 delete to access control.
810 * testsuite/25_algorithms/swap_ranges/moveable.cc: Likewise.
811 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust dg-warning
812 line numbers.
813
814 2011-05-19 Daniel Krugler <daniel.kruegler@googlemail.com>
815
816 * testsuite/util/testsuite_tr1.h: Add test classes.
817 * testsuite/20_util/is_nothrow_assignable/value.cc: Add.
818
819 2011-05-19 Paolo Carlini <paolo.carlini@oracle.com>
820
821 * include/std/type_traits (is_assignable, is_copy_assignable,
822 is_move_assignable, is_nothrow_assignable, is_nothrow_copy_assignable,
823 is_nothrow_move_assignable): Add; minor tweaks elsewhere.
824 (has_nothrow_copy_assign): Remove.
825 * testsuite/util/testsuite_tr1.h: Add test classes.
826 * testsuite/20_util/is_assignable/requirements/typedefs.cc: Add.
827 * testsuite/20_util/is_assignable/requirements/
828 explicit_instantiation.cc: Likewise.
829 * testsuite/20_util/is_nothrow_assignable/value.cc: Likewise.
830 * testsuite/20_util/is_nothrow_assignable/requirements/typedefs.cc:
831 Likewise.
832 * testsuite/20_util/is_nothrow_assignable/requirements/
833 explicit_instantiation.cc: Likewise.
834 * testsuite/20_util/is_move_assignable/value.cc: Likewise.
835 * testsuite/20_util/is_move_assignable/requirements/typedefs.cc:
836 Likewise.
837 * testsuite/20_util/is_move_assignable/requirements/
838 explicit_instantiation.cc: Likewise.
839 * testsuite/20_util/is_copy_assignable/value.cc: Likewise.
840 * testsuite/20_util/is_copy_assignable/requirements/typedefs.cc:
841 Likewise.
842 * testsuite/20_util/is_copy_assignable/requirements/
843 explicit_instantiation.cc: Likewise.
844 * testsuite/20_util/is_nothrow_move_assignable/value.cc: Likewise.
845 * testsuite/20_util/is_nothrow_move_assignable/requirements/
846 typedefs.cc: Likewise.
847 * testsuite/20_util/is_nothrow_move_assignable/requirements/
848 explicit_instantiation.cc: Likewise.
849 * testsuite/20_util/is_nothrow_copy_assignable/value.cc: Likewise.
850 * testsuite/20_util/is_nothrow_copy_assignable/requirements/
851 typedefs.cc: Likewise.
852 * testsuite/20_util/is_nothrow_copy_assignable/requirements/
853 explicit_instantiation.cc: Likewise.
854 * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust
855 dg-error line numbers.
856 * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
857 Likewise.
858 * testsuite/20_util/declval/requirements/1_neg.cc: Likewise.
859
860 2011-05-18 Jonathan Wakely <jwakely.gcc@gmail.com>
861
862 * include/bits/shared_ptr_base.h: Use noexcept. Define special member
863 functions as defaulted/deleted.
864 * include/bits/shared_ptr.h: Use noexcept.
865 * 20_util/shared_ptr/cons/43820_neg.cc: Adjust dg-error line numbers.
866 * 20_util/weak_ptr/comparison/cmp_neg.cc: Likewise.
867
868 2011-05-18 Jonathan Wakely <jwakely.gcc@gmail.com>
869
870 * doc/xml/manual/bitmap_allocator.xml: Fix typos.
871
872 2011-05-18 Paolo Carlini <paolo.carlini@oracle.com>
873
874 * libsupc++/initializer_list: Use noexcept specifier.
875 (initializer_list<>::size, begin, end): Qualify as const.
876 * include/bits/move.h (__addressof, forward, move, addressof): Specify
877 as noexcept.
878 * include/std/bitset: Use noexcept specifier throughout.
879 * include/debug/bitset: Update.
880 * include/profile/bitset: Likewise.
881
882 2011-05-17 Paolo Carlini <paolo.carlini@oracle.com>
883
884 * include/std/tuple: Use noexcept where appropriate.
885 (tuple<>::swap): Rework implementation.
886 (_Head_base<>::_M_swap_impl): Remove.
887 (get(std::tuple<>&&)): Add.
888 * testsuite/20_util/tuple/element_access/get2.cc: New.
889 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust dg-error
890 line number.
891
892 2011-05-16 Paolo Carlini <paolo.carlini@oracle.com>
893
894 * include/std/utility: Simplify the last commit, the whole
895 std::get code is C++0x only.
896
897 2011-05-16 Paolo Carlini <paolo.carlini@oracle.com>
898
899 * include/std/utility (get(std::pair<>&&)): Add.
900 * include/bits/stl_pair.h (pair::swap(pair&),
901 swap(pair<>&, pair<>&)): Use noexcept.
902 * include/bits/random.h (discard_block_engine<>::base,
903 independent_bits_engine<>::base, shuffle_order_engine<>::base,
904 random_device::entropy): Use noexcept.
905 * include/std/array: Use noexcept where appropriate.
906 (get(array<>&&)): Add.
907 * testsuite/23_containers/array/requirements/get.cc: New.
908 * testsuite/20_util/pair/get.cc: Likewise.
909 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Tweak dg-error
910 line number.
911
912 2011-05-15 Paolo Carlini <paolo.carlini@oracle.com>
913
914 * include/bits/c++config (_GLIBCXX_NOEXCEPT, _GLIBCXX_USE_NOEXCEPT):
915 Add.
916 * include/std/limits: Use the latter everywhere.
917 (numeric_limits<char16_t>, numeric_limits<char32_t>): Simplify
918 macro usages, the specializations exist only in C++0x mode.
919 * testsuite/ext/profile/mutex_extensions_neg.cc: Adjust dg-error
920 line number.
921
922 2011-05-11 Paolo Carlini <paolo.carlini@oracle.com>
923
924 * testsuite/26_numerics/headers/cmath/overloads_c++0x_neg.cc: Use
925 dg-require-cmath.
926 * testsuite/tr1/8_c_compatibility/cmath/overloads_neg.cc: Likewise.
927
928 2011-05-11 François Dumont <francois.cppdevs@free.fr>
929
930 * include/ext/pb_ds/detail/resize_policy/
931 hash_load_check_resize_trigger_imp.hpp (assert_valid): Replace
932 _GLIBCXX_DEBUG_ASSERT calls with PB_DS_DEBUG_VERIFY.
933 * include/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp,
934 find_fn_imps.hpp, insert_fn_imps.hpp, binomial_heap_base_.hpp,
935 constructors_destructor_fn_imps.hpp, split_join_fn_imps.hpp
936 (PB_DS_ASSERT_VALID): Rename in PB_DS_ASSERT_VALID_COND.
937 * include/ext/pb_ds/detail/debug_map_base.hpp,
938 splay_tree_/splay_tree_.hpp, ov_tree_map_/ov_tree_map_.hpp,
939 cc_hash_table_map_/cc_ht_map_.hpp, pat_trie_/pat_trie_.hpp,
940 leaf.hpp, internal_node.hpp, gp_hash_table_map_/gp_ht_map_.hpp,
941 bin_search_tree_/bin_search_tree_.hpp, list_update_map_/lu_map_.hpp,
942 rb_tree_map_/rb_tree_.hpp (PB_DS_ASSERT_VALID, PB_DS_DEBUG_VERIFY,
943 PB_DS_CHECK_KEY_EXISTS, PB_DS_CHECK_KEY_DOES_NOT_EXIST): Duplicate
944 macro definitions move...
945 * include/ext/pb_ds/detail/container_base_dispatch.hpp: ... here...
946 * include/ext/pb_ds/detail/basic_tree_policy/traits.hpp: ... and here.
947 * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp,
948 resize_policy.hpp, pairing_heap_/pairing_heap_.hpp,
949 left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp,
950 binomial_heap_/binomial_heap_.hpp, thin_heap_/thin_heap_.hpp,
951 rc_binomial_heap_/rc_binomial_heap_.hpp, rc.hpp (PB_DS_ASSERT_VALID,
952 PB_DS_DEBUG_VERIFY): Duplicate macro definitions move...
953 * include/ext/pb_ds/detail/priority_queue_base_dispatch.hpp:
954 ...here.
955
956 2011-05-09 Paolo Carlini <paolo.carlini@oracle.com>
957
958 PR libstdc++/48933
959 * include/c_global/cmath (acosh, asinh, atanh, cbrt, copysign,
960 erf, erfc, exp2, expm1, fdim, fma, fmax, hypot, ilogb, lgamma,
961 llrint, llround, log1p, log2, logb, lrint, lround, nearbyint,
962 nextafter, nexttoward, remainder, remquo, rint, round, scalbln,
963 scalbn, tgamma, trunc): Use __enable_if on the return type.
964 * include/tr1/cmath: Likewise.
965 * testsuite/26_numerics/headers/cmath/overloads_c++0x_neg.cc: New.
966 * testsuite/tr1/8_c_compatibility/cmath/overloads_neg.cc: Likewise.
967
968 2011-05-07 François Dumont <francois.cppdevs@free.fr>
969
970 * include/debug/macro.h (_GLIBCXX_DEBUG_VERIFY_AT): New.
971 (_GLICXX_DEBUG_VERIFY): Use latter.
972 * include/ext/pb_ds/detail/resize_policy/
973 hash_load_check_resize_trigger_imp.hpp: Emit assertion on the line
974 containing the original assert call.
975 * include/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp,
976 find_fn_imps.hpp, insert_fn_imps.hpp, binomial_heap_base_.hpp,
977 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp,
978 split_join_fn_imps.hpp: Likewise.
979 * include/ext/pb_ds/detail/cc_hash_table_map_/
980 erase_store_hash_fn_imps.hpp, insert_no_store_hash_fn_imps.hpp,
981 find_fn_imps.hpp, insert_store_hash_fn_imps.hpp, debug_fn_imps.hpp,
982 debug_no_store_hash_fn_imps.hpp, cc_ht_map_.hpp, resize_fn_imps.hpp,
983 constructor_destructor_fn_imps.hpp, debug_store_hash_fn_imps.hpp,
984 erase_no_store_hash_fn_imps.hpp: Likewise.
985 * include/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp,
986 insert_join_fn_imps.hpp, pat_trie_/head.hpp, debug_fn_imps.hpp,
987 constructors_destructor_fn_imps.hpp, pat_trie_.hpp, split_fn_imps.hpp,
988 leaf.hpp, erase_fn_imps.hpp, node_base.hpp, internal_node.hpp:
989 Likewise.
990 * include/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp,
991 r_erase_fn_imps.hpp, constructors_destructor_fn_imps.hpp,
992 debug_fn_imps.hpp, rotate_fn_imps.hpp, erase_fn_imps.hpp,
993 bin_search_tree_.hpp, insert_fn_imps.hpp, split_join_fn_imps.hpp:
994 Likewise.
995 * include/ext/pb_ds/detail/gp_hash_table_map_/
996 erase_store_hash_fn_imps.hpp, insert_no_store_hash_fn_imps.hpp,
997 find_fn_imps.hpp, gp_ht_map_.hpp, insert_store_hash_fn_imps.hpp,
998 debug_fn_imps.hpp, erase_fn_imps.hpp, debug_no_store_hash_fn_imps.hpp,
999 resize_fn_imps.hpp, constructor_destructor_fn_imps.hpp,
1000 debug_store_hash_fn_imps.hpp, erase_no_store_hash_fn_imps.hpp:
1001 Likewise.
1002 * include/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp,
1003 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp,
1004 erase_fn_imps.hpp, insert_fn_imps.hpp, binary_heap_.hpp,
1005 resize_policy.hpp, split_join_fn_imps.hpp: Likewise.
1006 * include/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp,
1007 find_fn_imps.hpp, insert_fn_imps.hpp,
1008 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp,
1009 pairing_heap_.hpp, split_join_fn_imps.hpp: Likewise.
1010 * include/ext/pb_ds/detail/binomial_heap_/
1011 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp,
1012 binomial_heap_.hpp: Likewise.
1013 * include/ext/pb_ds/detail/left_child_next_sibling_heap_/
1014 erase_fn_imps.hpp, left_child_next_sibling_heap_.hpp,
1015 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp: Likewise.
1016 * include/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp,
1017 find_fn_imps.hpp, thin_heap_.hpp, insert_fn_imps.hpp,
1018 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp,
1019 split_join_fn_imps.hpp: Likewise.
1020 * include/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp,
1021 ov_tree_map_.hpp, constructors_destructor_fn_imps.hpp,
1022 debug_fn_imps.hpp, split_join_fn_imps.hpp, info_fn_imps.hpp: Likewise.
1023 * include/ext/pb_ds/detail/debug_map_base.hpp: Likewise.
1024 * include/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp,
1025 find_fn_imps.hpp, insert_fn_imps.hpp,
1026 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp,
1027 splay_fn_imps.hpp, split_join_fn_imps.hpp, splay_tree_.hpp: Likewise.
1028 * include/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp,
1029 find_fn_imps.hpp, lu_map_.hpp, constructor_destructor_fn_imps.hpp,
1030 insert_fn_imps.hpp, debug_fn_imps.hpp: Likewise.
1031 * include/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp,
1032 rc_binomial_heap_.hpp, insert_fn_imps.hpp,
1033 constructors_destructor_fn_imps.hpp, debug_fn_imps.hpp, rc.hpp,
1034 split_join_fn_imps.hpp: Likewise.
1035 * include/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp,
1036 insert_fn_imps.hpp, constructors_destructor_fn_imps.hpp,
1037 debug_fn_imps.hpp, rb_tree_.hpp, split_join_fn_imps.hpp: Likewise.
1038 * include/ext/pb_ds/hash_policy.hpp: Likewise.
1039
1040 2011-05-06 Paolo Carlini <paolo.carlini@oracle.com>
1041
1042 * testsuite/22_locale/messages_byname/named_equivalence.cc: Fix.
1043
1044 2011-05-04 Marc Glisse <marc.glisse@normalesup.org>
1045
1046 PR libstdc++/47913 (again)
1047 * include/std/ratio (ratio_add, ratio_less): Rewrite.
1048 * testsuite/20_util/ratio/operations/47913.cc: Extend.
1049 * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Adjust dg-error
1050 line numbers.
1051 * testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Likewise.
1052
1053 2011-05-03 Paolo Carlini <paolo.carlini@oracle.com>
1054
1055 PR libstdc++/48848
1056 * include/std/valarray (valarray<>::valarray(valarray&&),
1057 valarray<>::operator=(valarray&&), valarray<>::swap): Add.
1058 * doc/xml/manual/status_cxx200x.xml: Update.
1059 * testsuite/26_numerics/valarray/moveable.cc: New.
1060 * testsuite/26_numerics/valarray/swap.cc: Likewise.
1061
1062 2011-05-03 Paolo Carlini <paolo.carlini@oracle.com>
1063
1064 PR libstdc++/48750
1065 * include/parallel/multiway_merge.h: Run _ValueType destructors.
1066 * include/parallel/multiway_mergesort.h: Likewise.
1067 * include/parallel/quicksort.h: Likewise.
1068 * include/parallel/random_shuffle.h: Likewise.
1069 * include/parallel/partial_sum.h: Likewise.
1070 * include/parallel/losertree.h: Run destructors; minor tweaks.
1071 * include/parallel/par_loop.h: Run destructors, fix memory
1072 allocations and deallocations.
1073 * testsuite/26_numerics/accumulate/48750.cc: New.
1074
1075 * testsuite/ext/profile/mutex_extensions_neg.cc: Do not run in
1076 parallel-mode to avoid spurious multiple errors.
1077
1078 2011-05-03 Jonathan Wakely <jwakely.gcc@gmail.com>
1079
1080 * include/std/functional (bind): Remove from overload set when first
1081 argument type might be a socket file descriptor.
1082 * testsuite/20_util/bind/socket.cc: New.
1083
1084 2011-05-03 Jonathan Wakely <jwakely.gcc@gmail.com>
1085
1086 PR libstdc++/48848
1087 * doc/xml/manual/status_cxx200x.xml: Update valarray status.
1088 * doc/html/*: Regenerate.
1089
1090 2011-05-02 Ollie Wild <aaw@google.com>
1091
1092 * include/ext/sso_string_base.h (__sso_string_base<>::_M_construct):
1093 Fix unqualified lookup.
1094 (__sso_string_base<>::_M_assign): Likewise.
1095 (__sso_string_base<>::_M_reserve): Likewise.
1096 (__sso_string_base<>::_M_mutate): Likewise.
1097 (__sso_string_base<>::_M_erase): Likewise.
1098 * include/ext/vstring.h (__versa_string<>::replace): Likewise.
1099 (__versa_string<>::compare): Likewise.
1100 * include/ext/vstring.tcc (__versa_string<>::compare): Likewise.
1101
1102 2011-05-02 Jonathan Wakely <jwakely.gcc@gmail.com>
1103
1104 * doc/xml/manual/status_cxx200x.xml: Update to reflect current status
1105 and FDIS content.
1106 * doc/xml/manual/documentation_hacking.xml: Fix typo.
1107 * doc/html/*: Regenerate.
1108
1109 2011-04-30 Daniel Krugler <daniel.kruegler@googlemail.com>
1110
1111 * include/std/type_traits (__is_default_constructible_atom,
1112 __is_default_constructible_safe<, true>,
1113 __is_direct_constructible_new_safe,
1114 __is_base_to_derived_ref<,, true>, __is_lvalue_to_rvalue_ref<,, true>,
1115 __is_direct_constructible_ref_cast, __is_direct_constructible,
1116 __is_nary_constructible): Simplify; add comments throughout.
1117
1118 2011-04-30 Paolo Carlini <paolo.carlini@oracle.com>
1119
1120 * testsuite/20_util/make_signed/requirements/typedefs_neg.cc:
1121 Adjust dg-error line numbers.
1122 * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
1123 Likewise.
1124 * testsuite/20_util/declval/requirements/1_neg.cc: Likewise.
1125
1126 2011-04-30 Doug Kwan <dougkwan@google.com>
1127
1128 * include/Makefile.am (install-freestanding-headers): Also install
1129 cxxabi_tweaks.h.
1130 * include/Makefile.in: Regenerate.
1131
1132 2011-04-28 Paolo Carlini <paolo.carlini@oracle.com>
1133
1134 PR libstdc++/48760
1135 * include/std/complex (complex<float>::complex(float, float),
1136 complex<double>::complex(double, double),
1137 complex<long double>::complex(long double, long double)): Use
1138 list-initialization in C++0x mode, initialize in the body in
1139 C++03 mode.
1140 * testsuite/26_numerics/complex/cons/48760.cc: New.
1141 * testsuite/26_numerics/complex/cons/48760_c++0x.cc: Likewise.
1142
1143 2011-04-28 Paolo Carlini <paolo.carlini@oracle.com>
1144
1145 * include/std/bitset (_Base_bitset(unsigned long long)): Minor
1146 tweak, remove redundant round braces.
1147
1148 2011-04-27 Paolo Carlini <paolo.carlini@oracle.com>
1149
1150 * include/bits/move.h (move_if_noexcept): Add.
1151 * testsuite/20_util/move_if_noexcept/requirements/
1152 explicit_instantiation.cc: New.
1153 * testsuite/20_util/move_if_noexcept/1.cc: Likewise.
1154
1155 2011-04-25 Paolo Carlini <paolo.carlini@oracle.com>
1156
1157 * include/std/type_traits (struct underlying_type): Add.
1158 * testsuite/20_util/underlying_type/requirements/typedefs-1.cc: New.
1159 * testsuite/20_util/underlying_type/requirements/typedefs-2.cc:
1160 Likewise.
1161 * testsuite/20_util/underlying_type/requirements/
1162 explicit_instantiation.cc: Likewise.
1163 * testsuite/20_util/declval/requirements/1_neg.cc: Adjust dg-error
1164 line number.
1165
1166 2011-04-24 Paolo Carlini <paolo.carlini@oracle.com>
1167
1168 * include/parallel/multiway_merge.h: Uglify equally_split
1169 and equally_split_point throughout.
1170 * include/parallel/par_loop.h: Likewise.
1171 * include/parallel/equally_split.h: Likewise.
1172 * include/parallel/set_operations.h: Likewise.
1173 * include/parallel/unique_copy.h: Likewise.
1174 * include/parallel/multiway_mergesort.h: Likewise.
1175 * include/parallel/search.h: Likewise.
1176 * include/parallel/partial_sum.h: Likewise.
1177 * include/parallel/find.h: Likewise.
1178
1179 2011-04-24 Gerald Pfeifer <gerald@pfeifer.com>
1180
1181 * doc/xml/manual/parallel_mode.xml: Fix link to libgomp online
1182 documentation. Expand link text.
1183
1184 2011-04-24 Gerald Pfeifer <gerald@pfeifer.com>
1185
1186 * libsupc++/cxxabi.h: Adjust link to FAQ entry.
1187
1188 2011-04-22 François Dumont <francois.cppdevs@free.fr>
1189
1190 * testsuite/lib/libstdc++.exp (check_v3_target_time): Discard
1191 unused compilation result thanks to /dev/null.
1192 * testsuite/lib/libstdc++.exp (check_v3_target_debug_mode,
1193 check_v3_target_profile_mode, check_v3_target_normal_mode,
1194 check_v3_target_cstdint, check_v3_target_cmath,
1195 check_v3_target_atomic_builtins, check_v3_target_gthreads,
1196 check_v3_target_nanosleep, check_v3_target_sched_yield,
1197 check_v3_target_string_conversions, check_v3_target_swprintf,
1198 check_v3_target_binary_io): Use simple preprocessing rather than
1199 compilation. Discard unused preprocessing result thanks to /dev/null.
1200
1201 2011-04-20 Jim Meyering <meyering@redhat.com>
1202
1203 * libsupc++/del_opnt.cc (operator delete): Remove useless
1204 if-before-free.
1205
1206 2011-04-19 Jonathan Wakely <jwakely.gcc@gmail.com>
1207
1208 PR libstdc++/48521
1209 * include/std/type_traits (result_of): Handle pointer to member.
1210 * include/std/functional (__invoke): Likewise.
1211 (_Function_to_function_pointer): Remove.
1212 (_Reference_wrapper_base): Provide nested types independent of
1213 unary_function and binary_function.
1214 (reference_wrapper::operator()): DR 2017.
1215 (ref(const A&&), cref(const A&&): Define as deleted.
1216 * include/std/future (async): Simplify SFINAE and use result_of to
1217 support pointer to member.
1218 * testsuite/20_util/reference_wrapper/invoke.cc: Test pointer to
1219 member.
1220 * testsuite/20_util/reference_wrapper/24803.cc: Likewise.
1221 * testsuite/20_util/reference_wrapper/typedefs.cc: Test for types
1222 instead of derivation from unary_function and binary_function.
1223 * testsuite/20_util/declval/requirements/1_neg.cc: Adjust.
1224 * testsuite/20_util/reference_wrapper/invoke-2.cc: New.
1225 * testsuite/20_util/reference_wrapper/ref_neg.c: New.
1226 * testsuite/20_util/reference_wrapper/typedefs-3.c: New.
1227
1228 2011-04-19 Hans-Peter Nilsson <hp@axis.com>
1229
1230 PR testsuite/48675
1231 * testsuite/20_util/hash/chi2_quality.cc (test_document_words): Stub
1232 this part if SAMPLES < 100000.
1233
1234 2011-04-18 Paolo Carlini <paolo.carlini@oracle.com>
1235
1236 * include/std/type_traits (is_nothrow_default_constructible,
1237 is_nothrow_copy_constructible, is_nothrow_move_constructible,
1238 is_copy_constructible, is_move_constructible): Add.
1239 (has_nothrow_default_constructor, has_nothrow_copy_constructor):
1240 Remove.
1241 (is_nothrow_constructible): Adjust.
1242
1243 * testsuite/util/testsuite_tr1.h (ThrowDefaultClass,
1244 ThrowCopyConsClass, ThrowMoveConsClass, NoexceptDefaultClass,
1245 ExceptDefaultClass, NoexceptCopyConsClass, ExceptCopyConsClass,
1246 NoexceptMoveConsClass, ExceptMoveConsClass): Add in C++0x mode.
1247
1248 * testsuite/20_util/has_nothrow_default_constructor: Remove.
1249 * testsuite/20_util/has_nothrow_copy_constructor: Likewise.
1250
1251 * testsuite/20_util/is_nothrow_move_constructible/value.cc: Likewise.
1252 * testsuite/20_util/is_nothrow_move_constructible/requirements/
1253 typedefs.cc: Likewise.
1254 * testsuite/20_util/is_nothrow_move_constructible/requirements/
1255 explicit_instantiation.cc: Likewise.
1256 * testsuite/20_util/is_nothrow_copy_constructible/value.cc: Likewise.
1257 * testsuite/20_util/is_nothrow_copy_constructible/requirements/
1258 typedefs.cc: Likewise.
1259 * testsuite/20_util/is_nothrow_copy_constructible/requirements/
1260 explicit_instantiation.cc: Likewise.
1261 * testsuite/20_util/is_nothrow_default_constructible/value.cc:
1262 Likewise.
1263 * testsuite/20_util/is_nothrow_default_constructible/requirements/
1264 typedefs.cc: Likewise.
1265 * testsuite/20_util/is_nothrow_default_constructible/requirements/
1266 explicit_instantiation.cc: Likewise.
1267 * testsuite/20_util/is_move_constructible/value.cc: Likewise.
1268 * testsuite/20_util/is_move_constructible/requirements/typedefs.cc:
1269 Likewise.
1270 * testsuite/20_util/is_move_constructible/requirements/
1271 explicit_instantiation.cc: Likewise.
1272 * testsuite/20_util/is_copy_constructible/value.cc: Likewise.
1273 * testsuite/20_util/is_copy_constructible/requirements/typedefs.cc:
1274 Likewise.
1275 * testsuite/20_util/is_copy_constructible/requirements/
1276 explicit_instantiation.cc: Likewise.
1277
1278 * testsuite/20_util/is_default_constructible/value.cc: Add tests.
1279 * testsuite/20_util/is_nothrow_constructible/value.cc: Likewise.
1280
1281 * testsuite/20_util/make_signed/requirements/typedefs_neg.cc:
1282 Adjust dg-error line numbers.
1283 * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
1284 Likewise.
1285 * testsuite/20_util/declval/requirements/1_neg.cc: Likewise.
1286
1287 2011-04-17 Paolo Carlini <paolo.carlini@oracle.com>
1288
1289 * testsuite/25_algorithms/partition/moveable.cc: Actually run
1290 it in parallel-mode for check-parallel.
1291
1292 2011-04-17 Daniel Krugler <daniel.kruegler@googlemail.com>
1293 Paolo Carlini <paolo.carlini@oracle.com>
1294
1295 PR libstdc++/48635 (again)
1296 * include/bits/unique_ptr.h (unique_ptr<>::unique_ptr(unique_ptr<>&&),
1297 unique_ptr<_Tp[]>::unique_ptr(unique_ptr<>&&),
1298 unique_ptr<>::operator=(unique_ptr<>&&),
1299 unique_ptr<_Tp[]>::operator=(unique_ptr<>&&)): Use forward<_Ep>, not
1300 forward<_Dp>, to forward the deleter.
1301 * testsuite/20_util/unique_ptr/assign/48635_neg.cc: New.
1302
1303 2011-04-15 Daniel Krugler <daniel.kruegler@googlemail.com>
1304 Paolo Carlini <paolo.carlini@oracle.com>
1305
1306 PR libstdc++/48631
1307 * include/bits/unique_ptr.h (default_delete<_Tp[]>): Add deleted
1308 function call operator.
1309 * testsuite/20_util/default_delete/48631_neg.cc: New.
1310 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust dg-error
1311 line numbers.
1312
1313 2011-04-15 Daniel Krugler <daniel.kruegler@googlemail.com>
1314 Paolo Carlini <paolo.carlini@oracle.com>
1315
1316 PR libstdc++/48635
1317 * include/bits/unique_ptr.h (unique_ptr<>::operator=(unique_ptr&&),
1318 unique_ptr<>::operator=(unique_ptr<>&&),
1319 unique_ptr<_Tp[],>::operator=(unique_ptr&&),
1320 unique_ptr<_Tp[],>::operator=(unique_ptr<>&&)): Forward the deleter
1321 instead of moving it.
1322 * testsuite/20_util/unique_ptr/assign/48635.cc: New.
1323
1324 2011-04-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1325
1326 * scripts/extract_symvers.pl: Handle NOTY.
1327
1328 2011-04-15 Paolo Carlini <paolo.carlini@oracle.com>
1329
1330 * include/std/istream: Fix comments in the light of DR60 + N3168.
1331
1332 2011-04-13 Daniel Krugler <daniel.kruegler@googlemail.com>
1333 Paolo Carlini <paolo.carlini@oracle.com>
1334
1335 PR libstdc++/48526
1336 * include/std/type_traits (struct is_constructible): Re-implement,
1337 according to n3290.
1338 (struct is_default_constructible): Add.
1339 (struct is_destructible): Likewise.
1340 (struct __and_, __or_, __not_): Add and use throughout; reorder some
1341 facilities, other minor tweaks.
1342 * testsuite/util/testsuite_tr1.h: Add test types.
1343 * testsuite/20_util/is_constructible/value-2.cc: New.
1344 * testsuite/20_util/is_default_constructible/value.cc: Likewise.
1345 * testsuite/20_util/is_default_constructible/requirements/typedefs.cc:
1346 Likewise.
1347 * testsuite/20_util/is_default_constructible/requirements/
1348 explicit_instantiation.cc: Likewise.
1349 * testsuite/20_util/is_destructible/value.cc: Likewise.
1350 * testsuite/20_util/is_destructible/requirements/typedefs.cc:
1351 Likewise.
1352 * testsuite/20_util/is_destructible/requirements/
1353 explicit_instantiation.cc: Likewise.
1354 * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust
1355 dg-error line numbers.
1356 * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
1357 Likewise.
1358 * testsuite/20_util/declval/requirements/1_neg.cc: Likewise.
1359 * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Likewise.
1360
1361 2011-04-13 Paolo Carlini <paolo.carlini@oracle.com>
1362
1363 * testsuite/20_util/is_function/value.cc: Add, adapted from the tr
1364 testsuite.
1365 * testsuite/20_util/is_function/requirements/typedefs.cc: Likewise.
1366 * testsuite/20_util/is_function/requirements/
1367 explicit_instantiation.cc: Likewise.
1368 * testsuite/20_util/is_function/24808.cc: Likewise.
1369 * testsuite/20_util/is_function/35637.cc: Likewise.
1370 * testsuite/20_util/is_object/value.cc: Likewise.
1371 * testsuite/20_util/is_object/requirements/typedefs.cc: Likewise.
1372 * testsuite/20_util/is_object/requirements/explicit_instantiation.cc:
1373 : Likewise.
1374 * testsuite/20_util/is_object/24808.cc: Likewise.
1375 * testsuite/20_util/is_compound/value.cc: Likewise.
1376 * testsuite/20_util/is_compound/requirements/typedefs.cc: Likewise.
1377 * testsuite/20_util/is_compound/requirements/
1378 explicit_instantiation.cc: Likewise.
1379 * testsuite/20_util/is_member_object_pointer/value.cc: Likewise.
1380 * testsuite/20_util/is_member_object_pointer/requirements/
1381 typedefs.cc: Likewise.
1382 * testsuite/20_util/is_member_object_pointer/requirements/
1383 explicit_instantiation.cc: Likewise.
1384 * testsuite/20_util/is_fundamental/value.cc: Likewise.
1385 * testsuite/20_util/is_fundamental/requirements/typedefs.cc: Likewise.
1386 * testsuite/20_util/is_fundamental/requirements/
1387 explicit_instantiation.cc: Likewise.
1388 * testsuite/20_util/is_member_pointer/value.cc: Likewise.
1389 * testsuite/20_util/is_member_pointer/requirements/typedefs.cc:
1390 Likewise.
1391 * testsuite/20_util/is_member_pointer/requirements/
1392 explicit_instantiation.cc: Likewise.
1393 * testsuite/20_util/is_member_function_pointer/value.cc: Likewise.
1394 * testsuite/20_util/is_member_function_pointer/
1395 requirements/typedefs.cc: Likewise.
1396 * testsuite/20_util/is_member_function_pointer/requirements/
1397 explicit_instantiation.cc: Likewise.
1398
1399 * testsuite/20_util/is_convertible/value.cc: Minor tweak, adjust
1400 Copyright years.
1401
1402 2011-04-12 Takaya Saito <gintensubaru@gmail.com>
1403
1404 PR libstdc++/48476
1405 * include/std/tuple (_Tuple_impl<>::_Tuple_impl(_Tuple_impl<>&&),
1406 _Tuple_impl<>::operator=(_Tuple_impl&&), _Tuple_impl<>::operator=
1407 (_Tuple_impl<>&&), tuple_cat): Use std::forward where appropriate.
1408 * testsuite/20_util/tuple/cons/48476.cc: New.
1409 * testsuite/20_util/tuple/48476.cc: Likewise.
1410 * testsuite/20_util/tuple/creation_functions/48476.cc: Likewise.
1411
1412 2011-04-12 Allan McRae <allan@archlinux.org>
1413
1414 PR libstdc++/48566
1415 * testsuite/tr1/6_containers/unordered_map/requirements/
1416 iterator_null_neg.cc: Include <cstddef>.
1417 * testsuite/tr1/6_containers/unordered_set/requirements/
1418 iterator_null_neg.cc: Likewise.
1419 * testsuite/27_io/basic_filebuf/seekoff/wchar_t/4.cc: Include
1420 <cstring>.
1421 * testsuite/util/testsuite_common_types.h: Include <limits>.
1422 * testsuite/29_atomics/atomic_integral/cons/assign_neg.cc:
1423 Adjust dg-error line numbers.
1424 * testsuite/29_atomics/atomic_integral/cons/copy_neg.cc: Likewise.
1425 * testsuite/29_atomics/atomic_integral/operators/increment_neg.cc:
1426 Likewise.
1427 * testsuite/29_atomics/atomic_integral/operators/bitwise_neg.cc:
1428 Likewise.
1429 * testsuite/29_atomics/atomic_integral/operators/decrement_neg.cc:
1430 Likewise.
1431 * testsuite/29_atomics/atomic/cons/assign_neg.cc: Likewise.
1432 * testsuite/29_atomics/atomic/cons/copy_neg.cc: Likewise.
1433
1434 2011-04-11 Jason Merrill <jason@redhat.com>
1435
1436 * testsuite/20_util/is_convertible/value.cc: Adjust.
1437
1438 2011-04-11 Paolo Carlini <paolo.carlini@oracle.com>
1439
1440 * testsuite/25_algorithms/inplace_merge/moveable.cc: Actually run
1441 it in parallel-mode for check-parallel.
1442 * testsuite/25_algorithms/rotate/moveable.cc: Likewise.
1443 * testsuite/25_algorithms/stable_partition/moveable.cc: Likewise.
1444 * testsuite/25_algorithms/remove/moveable.cc: Likewise.
1445 * testsuite/25_algorithms/sort_heap/check_compare_by_value.cc:
1446 Likewise.
1447 * testsuite/25_algorithms/unique/moveable.cc: Likewise.
1448 * testsuite/25_algorithms/remove_if/moveable.cc: Likewise.
1449 * testsuite/25_algorithms/heap/moveable.cc: Likewise.
1450
1451 * testsuite/25_algorithms/next_permutation/moveable.cc: Only skip
1452 the tests based on std::lexicographical_compare for check-parallel.
1453 * testsuite/25_algorithms/prev_permutation/moveable.cc: Likewise.
1454
1455 2011-04-10 Jonathan Wakely <jwakely.gcc@gmail.com>
1456
1457 PR libstdc++/48541
1458 * include/std/functional (_Base_manager::_M_get_pointer): Use
1459 addressof.
1460 * testsuite/20_util/function/48541.cc: New.
1461
1462 2011-04-10 Jonathan Wakely <jwakely.gcc@gmail.com>
1463
1464 PR libstdc++/48465
1465 * configure.ac (libtool_VERSION): Bump library version to 6:16:0.
1466 * configure: Regenerate.
1467 * config/abi/pre/gnu.ver (GLIBCXX_3.4.16): Export missing symbols.
1468 * testsuite/util/testsuite_abi.cc: Add GLIBCXX_3.4.16.
1469
1470 2011-04-06 Jeffrey Yasskin <jyasskin@google.com>
1471
1472 * include/ext/algorithm (is_sorted): In C++0x mode import from
1473 namespace std.
1474 * include/ext/numeric (iota): In C++0x mode import from
1475 namespace std.
1476 * testsuite/ext/is_sorted/cxx0x.cc: New.
1477 * testsuite/ext/iota/cxx0x.cc: New.
1478
1479 2011-04-02 Jonathan Wakely <redi@gcc.gnu.org>
1480
1481 PR libstdc++/48398
1482 * include/bits/unique_ptr.h (__tuple_type): Store pointer type.
1483 * testsuite/20_util/unique_ptr/modifiers/48398.cc: New.
1484 * testsuite/20_util/unique_ptr/requirements/pointer_type.cc: Remove
1485 unused parameter name.
1486
1487 2011-03-31 Jeffrey Yasskin <jyasskin@google.com>
1488
1489 * libsupc++/exception_ptr.h: Forward-declare std::type_info.
1490 * libsupc++/nested_exception.h (__throw_with_nested): Remove a
1491 redundant default argument from std::__throw_with_nested.
1492
1493 2011-03-31 Paolo Carlini <paolo.carlini@oracle.com>
1494
1495 PR libstdc++/48382
1496 * src/ctype.cc: Do not include <bits/ctype_noninline.h>.
1497 * src/Makefile.am: Add ctype_configure_char.cc to host_sources.
1498 * src/Makefile.in: Regenerate.
1499 * include/Makefile.am: Remove ctype_noninline.h from host_headers.
1500 * include/Makefile.in: Regenerate.
1501 * doc/xml/manual/internals.xml: Update.
1502 * config/os/newlib/ctype_noninline.h: Fixup and rename to...
1503 * config/os/newlib/ctype_configure_char.cc: ... this.
1504 * config/os/aix/ctype_noninline.h: Likewise.
1505 * config/os/aix/ctype_configure_char.cc: Likewise.
1506 * config/os/vxworks/ctype_noninline.h: Likewise.
1507 * config/os/vxworks/ctype_configure_char.cc
1508 * config/os/hpux/ctype_noninline.h: Likewise.
1509 * config/os/hpux/ctype_configure_char.cc: Likewise.
1510 * config/os/gnu-linux/ctype_noninline.h: Likewise.
1511 * config/os/gnu-linux/ctype_configure_char.cc: Likewise.
1512 * config/os/mingw32/ctype_noninline.h: Likewise.
1513 * config/os/mingw32/ctype_configure_char.cc: Likewise.
1514 * config/os/tpf/ctype_noninline.h: Likewise.
1515 * config/os/tpf/ctype_configure_char.cc: Likewise.
1516 * config/os/uclibc/ctype_noninline.h: Likewise.
1517 * config/os/uclibc/ctype_configure_char.cc: Likewise.
1518 * config/os/bionic/ctype_noninline.h: Likewise.
1519 * config/os/bionic/ctype_configure_char.cc: Likewise.
1520 * config/os/djgpp/ctype_noninline.h: Likewise.
1521 * config/os/djgpp/ctype_configure_char.cc: Likewise.
1522 * config/os/qnx/qnx6.1/ctype_noninline.h: Likewise.
1523 * config/os/qnx/qnx6.1/ctype_configure_char.cc: Likewise.
1524 * config/os/bsd/netbsd/ctype_noninline.h: Likewise.
1525 * config/os/bsd/netbsd/ctype_configure_char.cc: Likewise.
1526 * config/os/bsd/darwin/ctype_noninline.h: Likewise.
1527 * config/os/bsd/darwin/ctype_configure_char.cc: Likewise.
1528 * config/os/bsd/freebsd/ctype_noninline.h: Likewise.
1529 * config/os/bsd/freebsd/ctype_configure_char.cc: Likewise.
1530 * config/os/irix/irix6.5/ctype_noninline.h: Likewise.
1531 * config/os/irix/irix6.5/ctype_configure_char.cc: Likewise.
1532 * config/os/generic/ctype_noninline.h: Likewise.
1533 * config/os/generic/ctype_configure_char.cc: Likewise.
1534 * config/os/solaris/solaris2.7/ctype_noninline.h: Likewise.
1535 * config/os/solaris/solaris2.7/ctype_configure_char.cc: Likewise.
1536
1537 2011-03-25 Jonathan Wakely <jwakely.gcc@gmail.com>
1538
1539 * include/std/future (future::share): Add.
1540 (packaged_task::result_type): Remove as per LWG 2030.
1541 (packaged_task::packaged_task): Remove redundant constructors, as per
1542 LWG 1514.
1543 * testsuite/30_threads/future/members/share.cc: New.
1544 * testsuite/30_threads/packaged_task/requirements/typedefs.cc: Remove.
1545
1546 2011-03-25 Jonathan Wakely <jwakely.gcc@gmail.com>
1547
1548 * testsuite/28_regex/match_results/ctors/char/default.cc: Do not call
1549 members which require a fully established result state.
1550 * testsuite/28_regex/match_results/ctors/wchar_t/default.cc: Likewise.
1551
1552 2011-03-25 Paolo Carlini <paolo.carlini@oracle.com>
1553
1554 * include/bits/random.h (negative_binomial_distribution<>::
1555 negative_binomial_distribution(_IntType, double),
1556 negative_binomial_distribution<>::
1557 negative_binomial_distribution(const param_type&)): Tweak
1558 construction of _M_gd.
1559 * include/bits/random.tcc (negative_binomial_distribution<>::
1560 operator()): Adjust.
1561
1562 2011-03-24 Paolo Carlini <paolo.carlini@oracle.com>
1563
1564 * include/bits/random.h (negative_binomial_distribution<>::
1565 negative_binomial_distribution(_IntType, double),
1566 negative_binomial_distribution<>::
1567 negative_binomial_distribution(const param_type&)): Fix
1568 construction of _M_gd.
1569 * include/bits/random.tcc (negative_binomial_distribution<>::
1570 operator()): Fix computation, per Leger's algorithm.
1571 * testsuite/util/testsuite_random.h (discrete_pdf,
1572 negative_binomial_pdf, poisson_pdf, uniform_int_pdf): New.
1573 (binomial_pdf): Swap last two parameters.
1574 * testsuite/26_numerics/random/discrete_distribution/
1575 operators/values.cc: New.
1576 * testsuite/26_numerics/random/negative_binomial_distribution/
1577 operators/values.cc: Likewise.
1578 * testsuite/26_numerics/random/poisson_distribution/
1579 operators/values.cc: Likewise.
1580 * testsuite/26_numerics/random/uniform_int_distribution/
1581 operators/values.cc: Likewise.
1582 * testsuite/26_numerics/random/binomial_distribution/
1583 operators/values.cc: Adjust.
1584
1585 2011-03-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1586
1587 * config/abi/post/solaris2.8/baseline_symbols.txt: Regenerate.
1588 * config/abi/post/solaris2.8/sparcv9/baseline_symbols.txt: Likewise.
1589 * config/abi/post/solaris2.10/baseline_symbols.txt: Likewise.
1590 * config/abi/post/solaris2.10/amd64/baseline_symbols.txt: Likewise.
1591 * config/abi/post/solaris2.10/sparcv9/baseline_symbols.txt: Likewise.
1592
1593 2011-03-23 Matthias Klose <doko@ubuntu.com>
1594
1595 * config/abi/post/sparc-linux-gnu/baseline_symbols.txt: Regenerated.
1596
1597 2011-03-23 Uros Bizjak <ubizjak@gmail.com>
1598
1599 * config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Regenerated.
1600
1601 2011-03-22 Joseph Myers <joseph@codesourcery.com>
1602
1603 * configure.ac: Don't handle powerpc*-*-gnu*.
1604 * configure: Regenerate.
1605
1606 2011-03-22 Paolo Carlini <paolo.carlini@oracle.com>
1607
1608 * testsuite/21_strings/basic_string/cons/char/moveable2.cc: Tweak
1609 Copyright years.
1610 * testsuite/21_strings/basic_string/cons/wchar_t/moveable2.cc:
1611 Likewise.
1612
1613 2011-03-22 Paolo Carlini <paolo.carlini@oracle.com>
1614
1615 * include/bits/shared_ptr.h (operator>, operator<=, operator>=): Add,
1616 per DR 1401.
1617 (operator==, operator!=, operator<): Fix per the letter of DR 1401.
1618 * include/bits/shared_ptr_base.h: Likewise for __shared_ptr.
1619 * include/bits/unique_ptr.h (operator==, operator!=, operator<,
1620 operator<=, operator>, operator>=): Fix per the letter of DR 1401.
1621 * testsuite/20_util/shared_ptr/comparison/dr1401.cc: New.
1622 * testsuite/20_util/unique_ptr/comparison/dr1401.cc: Likewise.
1623 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust.
1624
1625 2011-03-22 Jakub Jelinek <jakub@redhat.com>
1626
1627 * config/abi/pre/gnu.ver (GLIBCXX_3.4.15): Export _ZNSsC2EOSs
1628 and _ZNSbIwSt11char_traitsIwESaIwEEC2EOS2_.
1629 * config/abi/post/solaris2.8/baseline_symbols.txt: Regenerated.
1630 * config/abi/post/solaris2.8/sparcv9/baseline_symbols.txt: Likewise.
1631 * config/abi/post/s390x-linux-gnu/baseline_symbols.txt: Likewise.
1632 * config/abi/post/x86_64-linux-gnu/baseline_symbols.txt: Likewise.
1633 * config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt: Likewise.
1634 * config/abi/post/powerpc-linux-gnu/baseline_symbols.txt: Likewise.
1635 * config/abi/post/powerpc64-linux-gnu/baseline_symbols.txt: Likewise.
1636 * config/abi/post/powerpc64-linux-gnu/32/baseline_symbols.txt:
1637 Likewise.
1638 * config/abi/post/solaris2.10/baseline_symbols.txt: Likewise.
1639 * config/abi/post/solaris2.10/amd64/baseline_symbols.txt: Likewise.
1640 * config/abi/post/solaris2.10/sparcv9/baseline_symbols.txt: Likewise.
1641 * config/abi/post/i486-linux-gnu/baseline_symbols.txt: Likewise.
1642 * config/abi/post/i386-linux-gnu/baseline_symbols.txt: Likewise.
1643 * config/abi/post/s390-linux-gnu/baseline_symbols.txt: Likewise.
1644 * testsuite/21_strings/basic_string/cons/char/moveable2.cc: New test.
1645 * testsuite/21_strings/basic_string/cons/wchar_t/moveable2.cc: New
1646 test.
1647
1648 2011-03-21 Jack Howarth <howarth@bromo.med.uc.edu>
1649
1650 * testsuite/lib/prune.exp (libstdc++-dg-prune): Prune "could not
1651 create compact unwind for" warnings.
1652
1653 2011-03-21 Jakub Jelinek <jakub@redhat.com>
1654
1655 * config/abi/post/i386-linux-gnu/baseline_symbols.txt: Update.
1656 * config/abi/post/i486-linux-gnu/baseline_symbols.txt: Likewise.
1657 * config/abi/post/powerpc64-linux-gnu/32/baseline_symbols.txt:
1658 Likewise.
1659 * config/abi/post/powerpc64-linux-gnu/baseline_symbols.txt: Likewise.
1660 * config/abi/post/powerpc-linux-gnu/baseline_symbols.txt: Likewise.
1661 * config/abi/post/s390-linux-gnu/baseline_symbols.txt: Likewise.
1662 * config/abi/post/s390x-linux-gnu/baseline_symbols.txt: Likewise.
1663 * config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt: Likewise.
1664 * config/abi/post/x86_64-linux-gnu/baseline_symbols.txt: Likewise.
1665 * config/abi/post/solaris2.8/sparcv9/baseline_symbols.txt: Likewise.
1666 * config/abi/post/solaris2.10/amd64/baseline_symbols.txt: Likewise.
1667 * config/abi/post/solaris2.10/sparcv9/baseline_symbols.txt: Likewise.
1668
1669 * testsuite/util/testsuite_abi.cc (check_version): Set incompatible
1670 even when adding symbols to CXXABI_1.3, GLIBCXX_LDBL_3.4 and
1671 CXXABI_LDBL_1.3 versions.
1672
1673 2011-03-21 Benjamin Kosnik <bkoz@redhat.com>
1674
1675 * config/abi/pre/gnu.ver: Remove typeinfo name exports for C++0x types.
1676
1677 2011-03-21 Jakub Jelinek <jakub@redhat.com>
1678
1679 * config/abi/pre/gnu.ver (CXXABI_1.3): Don't export _ZT[IS][PK]*[no].
1680 (CXXABI_1.3.5): Export _ZTI[PK]*[no].
1681
1682 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1683
1684 * testsuite/22_locale/num_put/put/char/14220.cc: Don't xfail on
1685 sparc*-sun-solaris2.10 && lp64.
1686
1687 2011-03-19 Paolo Carlini <paolo.carlini@oracle.com>
1688
1689 * testsuite/lib/libstdc++.exp (check_v3_target_c99_math): Rename
1690 to check_v3_target_cmath.
1691 * testsuite/lib/dg-options.exp (dg-require-c99_math): Rename
1692 to dg-require-cmath.
1693 * testsuite/26_numerics/random/binomial_distribution/
1694 operators/values.cc: Adjust.
1695
1696 2011-03-18 Diego Novillo <dnovillo@google.com>
1697
1698 * testsuite/decimal/mixed-mode-arith_neg.cc: Rename from
1699 mixed-mode_neg.cc
1700 * testsuite/decimal/mixed-mode-cmp_neg.cc: Factor out of
1701 mixed-mode-arith_neg.cc
1702
1703 2011-03-18 Paolo Carlini <paolo.carlini@oracle.com>
1704
1705 * testsuite/util/testsuite_random.h: New.
1706 * testsuite/lib/libstdc++.exp (check_v3_target_c99_math): Add.
1707 * testsuite/lib/dg-options.exp (dg-require-c99_math): Likewise.
1708 * testsuite/26_numerics/random/bernoulli_distribution/
1709 operators/values.cc: New.
1710 * testsuite/26_numerics/random/binomial_distribution/
1711 operators/values.cc: Likewise.
1712 * testsuite/26_numerics/random/geometric_distribution/
1713 operators/values.cc: Likewise.
1714
1715 2011-03-16 Benjamin Kosnik <bkoz@redhat.com>
1716
1717 * config/abi/pre/gnu.ver: Add base destructors for stdexcept classes.
1718 * testsuite/19_diagnostics/stdexcept.cc: New.
1719
1720 2011-03-15 Benjamin Kosnik <bkoz@redhat.com>
1721
1722 * include/std/thread: Revert.
1723 * src/thread.cc: Same.
1724 * config/abi/pre/gnu.ver: Same.
1725
1726 2011-03-15 Doug Kwan <dougkwan@google.com>
1727
1728 PR libstdc++/48123
1729 * include/Makefile.am (install-freestanding-headers): Install
1730 cpu_defines.h
1731 * include/Makefile.in: Regenerate.
1732
1733 2011-03-15 Benjamin Kosnik <bkoz@redhat.com>
1734
1735 * config/abi/pre/gnu.ver: Make nested_exception exports super clear.
1736 Move bad_function_call exports from CXXABI_1.3.5 to GLIBCXX_3.4.15.
1737
1738 2011-03-14 Benjamin Kosnik <bkoz@redhat.com>
1739
1740 PR libstdc++/48130
1741 * src/future.cc: Guard definitions.
1742 * libsupc++/nested_exception.cc: Same.
1743
1744 2011-03-14 Benjamin Kosnik <bkoz@redhat.com>
1745
1746 * src/Makefile.am: Add functional.cc, shared_ptr.cc.
1747 * src/Makefile.in: Regenerate.
1748 * libsupc++/Makefile.am: Add nested_exception.cc.
1749 * libsupc++/Makefile.in: Regenerate.
1750 * src/system_error.cc: Add ctor and dtor definitions for error_category.
1751 * src/functional.cc: New. Add dtor definition for bad_function_call.
1752 * src/stdexcept.cc: Add dtor definitions for domain_error,
1753 invalid_argument, length_error, out_of_range, range_error,
1754 overflow_error, underflow_error.
1755 * src/future.cc: Add dtor definition for __future_base::_Result_base.
1756 * src/shared_ptr.cc: New. Add dtor definition for bad_weak_ptr.
1757 * src/thread.cc: Add dtor for thread::_Impl_base.
1758 * include/std/system_error: Adjust.
1759 * include/std/stdexcept: Same.
1760 * include/std/future: Same.
1761 * include/std/functional: Same.
1762 * include/std/thread: Same.
1763 * include/bits/shared_ptr_base.h: Same.
1764 * libsupc++/nested_exception.cc: New. Add dtor for nested_exception.
1765 * libsupc++/nested_exception.h: Adjust.
1766 * testsuite/20_util/shared_ptr/cons/43820_neg.cc: Adjust line numbers.
1767 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
1768 * config/abi/pre/gnu.ver: Add new exports.
1769
1770 2011-03-14 Benjamin Kosnik <bkoz@redhat.com>
1771
1772 * include/bits/regex_compiler.h: Nest namespace versioning.
1773 * include/bits/regex_grep_matcher.tcc: Same.
1774 * include/bits/regex_grep_matcher.h: Same.
1775 * include/bits/regex_cursor.h: Same.
1776 * include/bits/regex_nfa.h: Same.
1777 * include/bits/regex_nfa.tcc: Same.
1778
1779 * include/bits/regex_grep_matcher.h: Version forward declarations.
1780 * include/bits/c++config: Add namespace association for __regex.
1781 * include/bits/regex.h: Make sub_match consistent.
1782
1783 2011-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1784
1785 * doc/xml/manual/abi.xml: Replace docs.sun.com URLs by their OTN
1786 equivalents.
1787 * doc/html/manual/abi.html: Regenerate.
1788
1789 2011-03-14 Tom Tromey <tromey@redhat.com>
1790
1791 * python/libstdcxx/v6/printers.py (_use_gdb_pp): New global.
1792 Try to import `gdb.printing' module.
1793 (UniquePointerPrinter.__init__): Add 'typename' argument.
1794 (StdSlistPrinter.__init__): Likewise.
1795 (StdSlistIteratorPrinter.__init__): Likewise.
1796 (StdVectorIteratorPrinter.__init__): Likewise.
1797 (StdRbtreeIteratorPrinter.__init__): Likewise.
1798 (StdDebugIteratorPrinter.__init__): Likewise.
1799 (StdDequeIteratorPrinter.__init__): Likewise.
1800 (StdStringPrinter.__init__): Likewise.
1801 (RxPrinter, Printer): New class.
1802 (libstdcxx_printer): New global.
1803 (register_libstdcxx_printers): Rewrite.
1804 (build_libstdcxx_dictionary): Rewrite.
1805 (pretty_printers_dict): Remove.
1806
1807 2011-03-14 Andrey Zholos <aaz@althenia.net>
1808
1809 PR libstdc++/48114
1810 * include/bits/random.h (geometric_distribution): Correct formula
1811 in comment, per C++0x.
1812 (geometric_distribution<>::param_type::param_type(double)): Fix check.
1813 (geometric_distribution<>::param_type::_M_initialize):
1814 Store log(1 - p).
1815 * include/bits/random.tcc (geometric_distribution<>::operator()):
1816 Fix computation.
1817 (binomial_distribution<>::operator()): Likewise.
1818
1819 2011-03-09 Paolo Carlini <paolo.carlini@oracle.com>
1820
1821 * testsuite/util/testsuite_rvalref.h: Minor tweaks.
1822
1823 2011-03-09 Jonathan Wakely <redi@gcc.gnu.org>
1824 Chris Jefferson <chris@bubblescope.net>
1825 Paolo Carlini <paolo.carlini@oracle.com>
1826
1827 * testsuite/util/testsuite_rvalref.h (rvalstruct_compare_by_value):
1828 New.
1829 * testsuite/25_algorithms/sort_heap/check_compare_by_value.cc:
1830 Likewise.
1831 * testsuite/25_algorithms/partial_sort/check_compare_by_value:
1832 Likewise.
1833 * testsuite/25_algorithms/stable_sort/check_compare_by_value.cc:
1834 Likewise.
1835 * testsuite/25_algorithms/sort/check_compare_by_value: Likewise.
1836
1837 2011-03-09 Chris Jefferson <chris@bubblescope.net>
1838
1839 PR libstdc++/48038
1840 * include/bits/stl_algo.h (__merge_backward): Rename to
1841 __move_merge_backward and change to always move rather than copy.
1842 (__move_merge): New function similar to std::merge except values
1843 are moved instead of copied.
1844 (__merge_adaptive, __merge_sort_loop): Change from using std::merge
1845 and __merge_backward to __move_merge and __move_merge_backward.
1846
1847 2011-03-07 Jason Merrill <jason@redhat.com>
1848
1849 * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Adjust
1850 expected errors.
1851
1852 2011-03-07 Benjamin Kosnik <bkoz@redhat.com>
1853 Matthias Klose <doko@ubuntu.com>
1854 Jonathan Wakely <redi@gcc.gnu.org>
1855
1856 PR libstdc++/47145
1857 * acinclude.m4 (GLIBCXX_CONFIGURE_DOCBOOK): Define.
1858 * configure.ac: Use it.
1859 * doc/Makefile.am (XSL_STYLE_DIR): Set at configure time.
1860 * configure: Regenerate.
1861 * doc/Makefile.in: Regenerate.
1862
1863 2011-03-04 Benjamin Kosnik <bkoz@chula>
1864
1865 * src/Makefile.am (inst_sources): Make source instantion files
1866 conditional.
1867 (XTEMPLATE_FLAGS): Make -fno-implicit-templates conditional.
1868 * src/Makefile.in: Regenerate.
1869 * src/valarray-inst.cc: Move to..
1870 * src/valarray.cc: ...this.
1871 * acinclude.m4 (GLIBCXX_ENABLE_EXTERN_TEMPLATE]): Define.
1872 * configure.ac (GLIBCXX_ENABLE_EXTERN_TEMPLATE): Use it.
1873 * configure: Regenerate.
1874 * include/Makefile.am (stamp-extern-template): Add.
1875 * include/Makefile.in: Regenerate.
1876
1877 * doc/xml/manual/configure.xml: Document --enable-extern-template.
1878
1879 * include/bits/locale_classes.tcc: Adjust comment.
1880 * include/bits/locale_facets.tcc: Same.
1881 * include/bits/basic_ios.tcc: Same.
1882 * include/bits/istream.tcc: Same.
1883 * include/bits/codecvt.h: Same.
1884 * include/bits/ostream.tcc: Same.
1885 * include/bits/sstream.tcc: Same.
1886 * include/bits/c++config: Same.
1887 * include/bits/basic_string.tcc: Same.
1888 * include/bits/ostream_insert.h: Same.
1889 * include/bits/locale_facets_nonio.tcc: Same.
1890 * include/bits/streambuf.tcc: Same.
1891 * include/bits/allocator.h: Same.
1892 * include/bits/fstream.tcc: Same.
1893
1894 * testsuite/ext/profile/mutex_extensions_neg.cc: Adjust line numbers.
1895
1896 2011-03-02 Benjamin Kosnik <bkoz@redhat.com>
1897
1898 * testsuite/Makefile.am: Make clean fixups.
1899 * testsuite/Makefile.in: Regenerate.
1900
1901 2011-03-02 Marc Glisse <marc.glisse@normalesup.org>
1902
1903 * include/std/ratio (ratio_less): Add comments.
1904
1905 2011-03-02 Marc Glisse <marc.glisse@normalesup.org>
1906
1907 PR libstdc++/47913
1908 * include/std/ratio (ratio_add): Avoid denominator overflow.
1909 * testsuite/20_util/ratio/operations/47913.cc: New.
1910
1911 2011-02-28 Benjamin Kosnik <bkoz@redhat.com>
1912
1913 * testsuite/20_util/hash/chi2_quality.cc: Use C++0x mode on simulators.
1914 * testsuite/20_util/hash/quality.cc: Same.
1915
1916 2011-02-28 Paolo Carlini <paolo.carlini@oracle.com>
1917
1918 PR libstdc++/47921
1919 * include/std/streambuf (basic_streambuf<>::__safe_gbump,
1920 __safe_pbump): Add.
1921 * include/bits/streambuf.tcc (basic_streambuf<>::xgetn,
1922 xputn): Use the latter.
1923 * include/bits/streambuf_iterator.h: Likewise.
1924 * src/strstream.cc: Likewise.
1925 * src/streambuf.cc: Likewise.
1926 * src/compatibility.cc: Likewise.
1927 * src/istream.cc: Likewise.
1928 * include/bits/fstream.tcc (basic_filebuf<>::xsgetn): Use setg
1929 instead of gbump.
1930 * include/std/sstream (basic_stringbuf<>::_M_pbump): Add.
1931 * include/bits/sstream.tcc (basic_stringbuf<>::seekoff,
1932 seekpos, _M_sync): Use setg, setp, and _M_pbump.
1933 * config/abi/pre/gnu.ver: Tweak.
1934
1935 2011-02-28 Paolo Carlini <paolo.carlini@oracle.com>
1936
1937 * testsuite/20_util/ratio/comparisons/comp3.cc: New.
1938
1939 2011-02-28 Marc Glisse <marc.glisse@normalesup.org>
1940
1941 PR libstdc++/42622
1942 * include/std/ratio (ratio_less): Reimplement to never overflow.
1943 * testsuite/20_util/ratio/comparisons/comp2.cc: Extend.
1944
1945 2011-02-24 Benjamin Kosnik <bkoz@redhat.com>
1946
1947 * testsuite/18_support/type_info/fundamental.cc: New.
1948
1949 * testsuite/Makefile.am: Make clean fixups.
1950 * testsuite/Makefile.in: Regenerate.
1951
1952 2011-02-19 François Dumont <francois.cppdevs@free.fr>
1953
1954 * include/debug/string (basic_string::insert): Add iterator check and
1955 pass normal iterator to normal insert.
1956 * include/debug/macros.h (__glibcxx_check_heap,
1957 __glibcxx_check_heap_pred): Remove __glibcxx_check_valid_range,
1958 already done.
1959
1960 2011-02-17 Paolo Carlini <paolo.carlini@oracle.com>
1961
1962 PR libstdc++/47776
1963 * testsuite/ext/vstring/hash/char/1.cc: Fix.
1964 * testsuite/ext/vstring/hash/wchar_t/1.cc: Likewise.
1965
1966 2011-02-17 Jonathan Wakely <jwakely.gcc@gmail.com>
1967
1968 * include/bits/regex.h (basic_regex::traits_type): Add typedef.
1969 (basic_regex::basic_regex(basic_regex&&)): Add noexcept.
1970 (basic_regex::operator=(basic_regex&&)): Likewise.
1971 (basic_regex::assign(basic_regex&&)): Likewise.
1972 (operator==(sub_match,...)): Implement DR 1181.
1973 (match_results::match_results(match_results&&)): Define.
1974 (match_results::operator=(const match_results&)): Fix parameter type.
1975 (match_results::operator=(match_results&&)): Define.
1976
1977 2011-02-17 Jonathan Wakely <jwakely.gcc@gmail.com>
1978
1979 PR libstdc++/47724
1980 * include/bits/regex_compiler.h (_Scanner::_M_advance): Do not treat
1981 line anchors as metacharacters.
1982 * testsuite/28_regex/basic_regex/ctors/47724.cc: New.
1983
1984 2011-02-16 Paolo Carlini <paolo.carlini@oracle.com>
1985
1986 PR libstdc++/47773
1987 * include/ext/vstring.h (hash<__gnu_cxx::__vstring>,
1988 hash<__gnu_cxx::__wvstring>, hash<__gnu_cxx::__u16vstring>,
1989 hash<__gnu_cxx::__u32vstring>): Add.
1990 * testsuite/ext/vstring/hash/char/1.cc: New.
1991 * testsuite/ext/vstring/hash/wchar_t/1.cc: Likewise.
1992
1993 2011-02-16 Jonathan Wakely <jwakely.gcc@gmail.com>
1994
1995 * include/bits/regex.h (match_results::format): Use char_traits.
1996
1997 2011-02-16 Benjamin Kosnik <bkoz@redhat.com>
1998
1999 * include/std/atomic: Remove atomic_address, uplift to N3225.
2000 * include/bits/atomic_0.h: Same.
2001 * include/bits/atomic_2.h: Same.
2002 * include/bits/atomic_base.h: Same.
2003 * testsuite/29_atomics/atomic_address/*: Delete.
2004
2005 2011-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>
2006
2007 * include/bits/regex.h (sub_match::sub_match): Add.
2008 (match_results::ready): Add.
2009 (match_results::empty): Adjust.
2010 (match_results::length): Add missing dereference.
2011 (match_results::operator[],prefix,suffix): Add debug mode checks.
2012 (match_results::cend): Re-use end().
2013 (match_results::format): Adjust signatures.
2014 (operator==(match_results,match_results)): Implement.
2015 * include/bits/regex_compiler.h (_Scanner_base): Use constexpr.
2016 * include/bits/regex_constants.h (syntax_option_type): Likewise.
2017 * include/bits/regex_grep_matcher.h: Fix comment typo.
2018 (_SpecializedResults::_SpecializedResults): Simplify.
2019 * include/bits/regex_cursor.h: Fix comment typo.
2020 * include/bits/regex_nfa.h: Likewise.
2021 * testsuite/28_regex/basic_regex/ctors/basic/string_range_01_02_03.cc:
2022 Fix error code, remove xfail.
2023 * testsuite/28_regex/basic_regex/ctors/extended/
2024 string_range_01_02_03.cc: Likewise.
2025
2026 2011-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>
2027
2028 * include/bits/regex_compiler.h: Remove unnecessary bind() calls.
2029 * include/bits/regex_nfa.h: Remove unnecessary base classes.
2030
2031 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2032
2033 * configure: Regenerate.
2034
2035 2011-02-12 Paolo Carlini <paolo.carlini@oracle.com>
2036
2037 PR libstdc++/47709
2038 * include/ext/algorithm (is_heap): In C++0x mode import from
2039 namespace std.
2040 * testsuite/ext/is_heap/47709.cc: New.
2041
2042 2011-02-12 Jakub Jelinek <jakub@redhat.com>
2043 Jonathan Wakely <jwakely.gcc@gmail.com>
2044
2045 PR libstdc++/47662
2046 * testsuite/17_intro/headers/c++200x/operator_names.cc: New.
2047 * testsuite/17_intro/headers/c++1998/operator_names.cc: Add comment.
2048
2049 2011-02-12 Paolo Carlini <paolo.carlini@oracle.com>
2050
2051 * include/tr1/cmath (fabs): Define.
2052 * include/tr1/complex (acos, asin, atan): Avoid duplicate definitions
2053 in C++0x mode.
2054
2055 2011-02-12 Jonathan Wakely <jwakely.gcc@gmail.com>
2056
2057 * testsuite/tr1/headers/c++200x/complex.cc: New.
2058
2059 2011-02-11 Johannes Singler <singler@kit.edu>
2060
2061 PR libstdc++/47433
2062 * include/parallel/losertree.h
2063 (_LoserTreeUnguarded<>::__delete_min_insert):
2064 Add missing "using std::swap;", as for other variants.
2065
2066 2011-02-10 Benjamin Kosnik <bkoz@redhat.com>
2067
2068 * src/Makefile.am (sources): Add regex.cc.
2069 * src/Makefile.in: Regenerate.
2070 * src/regex.cc: New.
2071 * include/bits/regex_error.h (error_type): Use constexpr.
2072 (regex_error): Move ctor and dtor out of line.
2073
2074 * testsuite/28_regex/03_requirements: To...
2075 * testsuite/28_regex/requirements: ... this.
2076 * testsuite/28_regex/04_header: To...
2077 * testsuite/28_regex/headers: ... this.
2078 * testsuite/28_regex/05_constants: To...
2079 * testsuite/28_regex/constants: ... this.
2080 * testsuite/28_regex/06_exception_type: To...
2081 * testsuite/28_regex/regex_error: ... this.
2082 * testsuite/28_regex/07_traits: To...
2083 * testsuite/28_regex/traits: ... this.
2084 * testsuite/28_regex/08_basic_regex: To...
2085 * testsuite/28_regex/basic_regex: ... this.
2086 * testsuite/28_regex/09_sub_match: To...
2087 * testsuite/28_regex/sub_match: ... this.
2088 * testsuite/28_regex/10_match_results: To...
2089 * testsuite/28_regex/match_results: ... this.
2090 * testsuite/28_regex/11_algorithms: To...
2091 * testsuite/28_regex/algorithms: ... this.
2092 * testsuite/28_regex/12_iterators: To...
2093 * testsuite/28_regex/iterators: ... this.
2094
2095 2011-02-10 Jonathan Wakely <jwakely.gcc@gmail.com>
2096
2097 PR libstdc++/47662
2098 * include/bits/c++config: Do not use alternative token.
2099 * testsuite/17_intro/headers/c++1998/operator_names.cc: New.
2100
2101 2011-02-10 Jonathan Wakely <jwakely.gcc@gmail.com>
2102
2103 * src/future.cc (future_error_category::message): Handle no_state.
2104
2105 2011-02-10 Paolo Carlini <paolo.carlini@oracle.com>
2106
2107 * testsuite/23_containers/multimap/modifiers/erase/47628.cc: Do
2108 not test in C++0x mode.
2109 * testsuite/23_containers/map/modifiers/erase/47628.cc: Likewise.
2110 * testsuite/20_util/headers/utility/synopsis.cc: Tweak to work
2111 in C++0x mode too.
2112
2113 2011-02-10 Jonathan Wakely <jwakely.gcc@gmail.com>
2114
2115 * doc/xml/manual/status_cxx200x.xml: Update.
2116 * doc/html/*: Regenerate.
2117
2118 2011-02-10 Jonathan Wakely <jwakely.gcc@gmail.com>
2119
2120 * doc/xml/manual/debug.xml: Improve data race docs.
2121
2122 2011-02-09 Paolo Carlini <paolo.carlini@oracle.com>
2123
2124 PR libstdc++/47668
2125 * include/debug/map.h (map): Remove unnecessary using-declaration.
2126 * include/debug/multimap.h (multimap): Likewise.
2127 * include/profile/map.h (map): Likewise.
2128 * include/profile/multimap.h (multimap): Likewise.
2129
2130 2011-02-09 Jonathan Wakely <jwakely.gcc@gmail.com>
2131
2132 PR libstdc++/43863
2133 * libsupc++/guard.cc (recursive_init_error::~recursive_init_error):
2134 Move to ...
2135 * libsupc++/guard_error.cc: ... new file.
2136 * libsupc++/Makefile.am: Update.
2137 * libsupc++/Makefile.in: Regenerate.
2138
2139 2011-02-09 Jonathan Wakely <jwakely.gcc@gmail.com>
2140
2141 * include/std/future (packaged_task::operator bool): Rename to...
2142 (packaged_task::valid): ...this.
2143 * testsuite/30_threads/packaged_task/cons/1.cc: Adjust.
2144 * testsuite/30_threads/packaged_task/cons/2.cc: Adjust.
2145 * testsuite/30_threads/packaged_task/cons/move.cc: Adjust.
2146 * testsuite/30_threads/packaged_task/cons/move_assign.cc: Adjust.
2147 * testsuite/30_threads/packaged_task/cons/alloc.cc: Adjust.
2148 * testsuite/30_threads/packaged_task/members/invoke.cc: Adjust.
2149 * testsuite/30_threads/packaged_task/members/reset.cc: Adjust.
2150 * testsuite/30_threads/packaged_task/members/reset2.cc: Adjust.
2151 * testsuite/30_threads/packaged_task/members/swap.cc: Adjust.
2152 * testsuite/30_threads/packaged_task/members/boolconv.cc: Remove.
2153 * testsuite/30_threads/packaged_task/members/valid.cc: Add.
2154
2155 2011-02-09 Paolo Carlini <paolo.carlini@oracle.com>
2156
2157 * doc/xml/manual/io.xml: Fix typo.
2158 * doc/html/manual/streambufs.html: Likewise.
2159
2160 2011-02-09 Paolo Carlini <paolo.carlini@oracle.com>
2161
2162 * config/abi/pre/gnu.ver: Fix.
2163
2164 2011-02-08 Benjamin Kosnik <bkoz@redhat.com>
2165
2166 * doc/xml/manual/appendix_porting.xml: Add doc section.
2167 * doc/xml/manual/appendix_contributing.xml: Split out doc bits to...
2168 * doc/xml/manual/documentation_hacking.xml: ...here.
2169
2170 * doc/xml/manual/debug_mode.xml: Adjust.
2171 * doc/xml/manual/prerequisites.xml: Adjust.
2172 * doc/Makefile.am (xml_sources): Add dot files,
2173 documentation_hacking.xml.
2174 * doc/Makefile.in: Regenerate.
2175
2176 * doc/xml/manual/build_hacking.xml: Use absolute paths for images.
2177 * doc/xml/images/confdeps.pdf: Add.
2178
2179 * doc/html/*: Regenerate.
2180
2181 2011-02-08 Jonathan Wakely <jwakely.gcc@gmail.com>
2182
2183 * doc/xml/gnu/fdl-1.2.xml: Remove.
2184 * doc/xml/gnu/gpl-2.0.xml: Remove.
2185 * doc/Makefile.am: Update.
2186 * doc/Makefile.in: Regenerate.
2187
2188 2011-02-07 Paolo Carlini <paolo.carlini@oracle.com>
2189
2190 PR libstdc++/47628
2191 * include/bits/stl_tree.h (_Rb_tree::erase(iterator), erase(iterator,
2192 iterator)): Add back in C++03 mode.
2193 * testsuite/23_containers/map/modifiers/erase/47628.cc: New.
2194 * testsuite/23_containers/multimap/modifiers/erase/47628.cc: Likewise.
2195
2196 2011-02-07 Benjamin Kosnik <bkoz@redhat.com>
2197
2198 PR libstdc++/47560 try two
2199 * config/os/hpux/os_defines.h: Guard for C++.
2200
2201 2011-02-07 Gerald Pfeifer <gerald@pfeifer.com>
2202
2203 * doc/xml/faq.xml: Adjust link to bug database.
2204 Remove old item on broken header files.
2205
2206 2011-02-04 Benjamin Kosnik <bkoz@redhat.com>
2207
2208 * include/bits/regex_error.h (__throw_regex_error): Not inline.
2209 * src/functexcept.cc: Add definition.
2210 * config/abi/pre/gnu.ver: Export.
2211
2212 2011-02-04 Ralf Corsépius <ralf.corsepius@rtems.org>
2213
2214 * crossconfig.m4 (GLIBCXX_CROSSCONFIG): Add *-rtems*.
2215 * configure: Regenerate.
2216
2217 2011-02-01 Paolo Carlini <paolo.carlini@oracle.com>
2218
2219 PR libstdc++/46914
2220 * include/bits/atomic_0.h (_ATOMIC_STORE_, _ATOMIC_MODIFY_,
2221 _ATOMIC_CMPEXCHNG_): Rename __v -> __w, and __m -> __n, to
2222 avoid name conflicts.
2223
2224 2011-02-01 Benjamin Kosnik <bkoz@redhat.com>
2225
2226 PR libstdc++/47560
2227 * config/os/hpux/os_defines.h: Remove use of macros on namespace.
2228
2229 2011-02-01 Benjamin Kosnik <bkoz@redhat.com>
2230
2231 * scripts/run_doxygen: Allow doxygen 1.7.0 again.
2232 * doc/doxygen/user.cfg.in (PDF_HYPERLINKS): Re-enable.
2233 (COMPACT_LATEX): Enable.
2234
2235 * include/profile/impl/profiler_container_size.h: Adjust doxygen markup.
2236 * include/profile/impl/profiler_hash_func.h: Same.
2237 * include/bits/hashtable.h: Same.
2238 * include/backward/auto_ptr.h: Same.
2239 * include/backward/strstream: Same.
2240 * include/backward/backward_warning.h: Same.
2241 * include/backward/binders.h: Same.
2242
2243 2011-02-01 Gerald Pfeifer <gerald@pfeifer.com>
2244
2245 * doc/xml/manual/debug.xml: Use GDB instead of gdb.
2246 Adjust link to GDB manual.
2247
2248 2011-01-31 Benjamin Kosnik <bkoz@redhat.com>
2249
2250 * include/bits/c++config (_GLIBCXX_DEPRECATED): To
2251 _GLIBCXX_USE_DEPRECATED.
2252 (_GLIBCXX_DEPRECATED_ATTR): To _GLIBCXX_DEPRECATED.
2253 * doc/xml/manual/using.xml: Same.
2254 * include/std/memory: Same.
2255 * include/std/streambuf: Same.
2256 * include/bits/shared_ptr.h: Same.
2257 * include/bits/unique_ptr.h: Same.
2258 * include/bits/shared_ptr_base.h: Same.
2259 * include/bits/stl_function.h: Same.
2260 * include/tr1/shared_ptr.h: Same.
2261 * include/backward/auto_ptr.h: Same.
2262 * include/backward/binders.h: Same.
2263
2264 2011-01-31 Paolo Carlini <paolo.carlini@oracle.com>
2265
2266 * doc/html/ext/lwg-active.html: Update to Revision D73.
2267 * doc/html/ext/lwg-closed.html: Likewise.
2268 * doc/html/ext/lwg-defects.html: Likewise.
2269 * doc/xml/manual/intro.xml: Update status of issues 408, 539, 865.
2270
2271 2011-01-30 Benjamin Kosnik <bkoz@redhat.com>
2272
2273 PR libstdc++/36104 part four
2274 * include/bits/c++config (_GLIBCXX_STD): Remove.
2275 (_GLIBCXX_STD_D, _GLIBCXX_PR): Now _GLIBCXX_STD_C.
2276 (_GLIBCXX_P): Now _GLIBCXX_STD_A.
2277 (_GLIBCXX_NAMESPACE_DEBUG, _GLIBCXX_NAMESPACE_PARALLEL,
2278 _GLIBCXX_NAMESPACE_PROFILE, _GLIBCXX_NAMESPACE_VERSION): Remove.
2279 (_GLIBCXX_INLINE_DEBUG, _GLIBCXX_INLINE_PARALLEL,
2280 _GLIBCXX_INLINE_PROFILE): Remove.
2281 (_GLIBCXX_BEGIN_NAMESPACE(X)): Remove.
2282 (_GLIBCXX_END_NAMESPACE): Remove.
2283 (_GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)): Remove.
2284 (_GLIBCXX_END_NESTED_NAMESPACE): Remove.
2285 (_GLIBCXX_BEGIN_NAMESPACE_ALGO): Add.
2286 (_GLIBCXX_END_NAMESPACE_ALGO): Add.
2287 (_GLIBCXX_BEGIN_NAMESPACE_CONTAINER): Add.
2288 (_GLIBCXX_END_NAMESPACE_CONTAINER): Add.
2289 (_GLIBCXX_BEGIN_NAMESPACE_VERSION): Add.
2290 (_GLIBCXX_END_NAMESPACE_VERSION): Add.
2291 (_GLIBCXX_BEGIN_LDBL_NAMESPACE): To _GLIBCXX_BEGIN_NAMESPACE_LDBL.
2292 (_GLIBCXX_END_LDBL_NAMESPACE): To _GLIBCXX_END_NAMESPACE_LDBL.
2293 (_GLIBCXX_VISIBILITY_ATTR): Revert to _GLIBCXX_VISIBILITY.
2294 * include/*: Use new macros for namespace scope.
2295 * config/*: Same.
2296 * src/*: Same.
2297
2298 * src/Makefile.am (sources): Remove debug_list.cc, add
2299 compatibility-debug_list-2.cc.
2300 (parallel_sources): Remove parallel_list.cc, add
2301 compatibility-parallel_list-2.cc.
2302 (compatibility-parallel_list-2.[o,lo]): New rule.
2303 * src/Makefile.in: Regenerate.
2304 * src/debug_list.cc: Remove.
2305 * src/parallel_list.cc: Remove.
2306 * src/compatibility-list-2.cc: New.
2307 * src/compatibility-debug_list-2.cc: New.
2308 * src/compatibility-parallel_list-2.cc: New.
2309
2310 * doc/doxygen/user.cfg.in: Adjust macros.
2311
2312 * testsuite/20_util/auto_ptr/assign_neg.cc: Adjust line numbers, macros.
2313 * testsuite/20_util/declval/requirements/1_neg.cc: Same.
2314 * testsuite/20_util/duration/requirements/typedefs_neg1.cc: Same.
2315 * testsuite/20_util/duration/requirements/typedefs_neg2.cc: Same.
2316 * testsuite/20_util/duration/requirements/typedefs_neg3.cc: Same.
2317 * testsuite/20_util/forward/c_neg.cc: Same.
2318 * testsuite/20_util/forward/f_neg.cc: Same.
2319 * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same.
2320 * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same.
2321 * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Same.
2322 * testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
2323 * testsuite/20_util/shared_ptr/cons/43820_neg.cc: Same.
2324 * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
2325 * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: Same.
2326 * testsuite/23_containers/deque/requirements/dr438/
2327 constructor_1_neg.cc: Same.
2328 * testsuite/23_containers/deque/requirements/dr438/
2329 constructor_2_neg.cc: Same.
2330 * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: Same.
2331 * testsuite/23_containers/forward_list/capacity/1.cc: Same.
2332 * testsuite/23_containers/forward_list/requirements/dr438/
2333 assign_neg.cc: Same.
2334 * testsuite/23_containers/forward_list/requirements/dr438/
2335 constructor_1_neg.cc: Same.
2336 * testsuite/23_containers/forward_list/requirements/dr438/
2337 constructor_2_neg.cc: Same.
2338 * testsuite/23_containers/forward_list/requirements/dr438/
2339 insert_neg.cc: Same.
2340 * testsuite/23_containers/list/capacity/29134.cc: Same.
2341 * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: Same.
2342 * testsuite/23_containers/list/requirements/dr438/
2343 constructor_1_neg.cc: Same.
2344 * testsuite/23_containers/list/requirements/dr438/
2345 constructor_2_neg.cc: Same.
2346 * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
2347 * testsuite/23_containers/vector/bool/capacity/29134.cc: Same.
2348 * testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: Same.
2349 * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: Same.
2350 * testsuite/23_containers/vector/requirements/dr438/
2351 constructor_1_neg.cc: Same.
2352 * testsuite/23_containers/vector/requirements/dr438/
2353 constructor_2_neg.cc: Same.
2354 * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: Same.
2355 * testsuite/25_algorithms/sort/35588.cc: Same.
2356 * testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
2357 * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
2358 * testsuite/ext/profile/mutex_extensions_neg.cc: Same.
2359 * testsuite/ext/profile/profiler_algos.cc: Same.
2360 * testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Same.
2361 * testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Same.
2362 * testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Same.
2363 * testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Same.
2364 * testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc: Same.
2365
2366 2011-01-30 Gerald Pfeifer <gerald@pfeifer.com>
2367
2368 * doc/xml/manual/abi.xml: Adjust link to C++ ABI specification.
2369 Improve description of one such reference.
2370
2371 2011-01-30 Gerald Pfeifer <gerald@pfeifer.com>
2372
2373 * doc/xml/manual/codecvt.xml: Fix link to The Austin Common
2374 Standards Revision Group.
2375 * doc/xml/manual/locale.xml: Ditto.
2376 * doc/xml/manual/messages.xml: Ditto.
2377 * doc/xml/manual/using_exceptions.xml: Ditto.
2378
2379 2011-01-28 Paolo Carlini <paolo.carlini@oracle.com>
2380
2381 * include/bits/atomic_base.h: Do not include <stddef.h>.
2382 (kill_dependency): Uglify ret.
2383
2384 2011-01-26 Johannes Singler <singler@kit.edu>
2385
2386 * include/parallel/numeric (inner_product, partial_sum):
2387 Qualify subsequent call with __gnu_parallel instead of
2388 _GLIBCXX_STD_P to reenable parallel execution without ambiguity.
2389 * include/parallel/algobase.h (equal): Likewise.
2390 * include/parallel/algo.h (find_first_of, search_n, merge,
2391 nth_element, partial_sort, max_element, min_element): Likewise.
2392 * testsuite/25_algorithms/headers/algorithm/
2393 parallel_algorithm_mixed1.cc (main): Add respective test cases.
2394 * testsuite/25_algorithms/headers/algorithm/
2395 parallel_algorithm_mixed2.cc (main): Likewise.
2396 * testsuite/26_numerics/headers/numeric/
2397 parallel_numeric_mixed1.cc (main): Likewise.
2398 * testsuite/26_numerics/headers/numeric/
2399 parallel_numeric_mixed2.cc (main): Likewise.
2400
2401 2011-01-24 Graham Reed <greed@pobox.com>
2402
2403 PR libstdc++/47387
2404 * config/os/aix/ctype_inline.h (ctype<char>::is): Use _M_table if
2405 provided.
2406
2407 2011-01-24 Johannes Singler <singler@kit.edu>
2408
2409 PR libstdc++/47433
2410 * include/parallel/losertree.h
2411 (_LoserTree<>::__delete_min_insert):
2412 Do not qualify swap with std:: for value type,
2413 but include a using directive instead.
2414 (_LoserTreeUnguarded<>::__delete_min_insert): Likewise.
2415 * include/parallel/balanced_quicksort.h (__qsb_divide):
2416 Use std::iter_swap instead of std::swap.
2417 (__qsb_local_sort_with_helping): Likewise.
2418 * include/parallel/partition.h (__parallel_partition):
2419 Likewise. (__parallel_nth_element): Likewise.
2420
2421 2011-01-24 Johannes Singler <singler@kit.edu>
2422
2423 PR libstdc++/47437
2424 * include/parallel/multiway_merge.h (_UnguardedIterator):
2425 Remove useless "mutable" from reference declaration.
2426
2427 2011-01-21 Benjamin Kosnik <bkoz@redhat.com>
2428
2429 * include/bits/c++config (_GLIBCXX_EXPORT_TEMPLATE): Remove.
2430 * include/debug/safe_sequence.h: Same.
2431 * include/debug/safe_iterator.h: Same.
2432 * include/std/forward_list: Same.
2433 * include/std/deque: Same.
2434 * include/std/list: Same.
2435 * include/std/random: Same.
2436 * include/std/streambuf: Same.
2437 * include/std/fstream: Same.
2438 * include/std/istream: Same.
2439 * include/std/string: Same.
2440 * include/std/ostream: Same.
2441 * include/std/sstream: Same.
2442 * include/ext/vstring.h: Same.
2443 * include/bits/basic_ios.h: Same.
2444 * include/bits/locale_classes.h: Same.
2445 * include/bits/locale_facets.h: Same.
2446 * include/bits/valarray_array.h: Same.
2447 * include/bits/locale_facets_nonio.h: Same.
2448 * include/tr1/random: Same.
2449
2450 2011-01-20 Jonathan Wakely <jwakely.gcc@gmail.com>
2451
2452 * doc/xml/manual/diagnostics.xml: Replace note about C++0x concepts.
2453
2454 2011-01-20 Benjamin Kosnik <bkoz@redhat.com>
2455
2456 PR libstdc++/36104 part three
2457 * src/hashtable_c++0x.cc: Adjust namespace macros.
2458 * testsuite/util/testsuite_rvalref.h: Don't forward declare hash.
2459 * config/abi/pre/gnu-versioned-namespace.ver: Update.
2460
2461 2011-01-20 Benjamin Kosnik <bkoz@redhat.com>
2462
2463 * include/ext/pb_ds/detail/resize_policy/
2464 hash_load_check_resize_trigger_imp.hpp: Adjust assert condition.
2465 * include/ext/pb_ds/detail/pat_trie_/
2466 constructors_destructor_fn_imps.hpp: Same.
2467 * include/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp: Format.
2468 * include/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp: Same.
2469 * include/ext/pb_ds/detail/debug_map_base.hpp: Use never_adjustor.
2470
2471 * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Adjust
2472 iterations downward when testing in debug mode.
2473 * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Same.
2474 * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Same.
2475 * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Same.
2476 * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Same.
2477 * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc: Same.
2478 * testsuite/ext/pb_ds/example/hash_illegal_resize.cc: Use SIZE,
2479 reduce in debug mode.
2480
2481 2011-01-19 Benjamin Kosnik <bkoz@redhat.com>
2482
2483 PR libstdc++/36104 part two
2484 * include/bits/hashtable.h: Revert to non-nested macro usage.
2485 * include/bits/hashtable_policy.h: Same.
2486
2487 2011-01-19 Graham Reed <greed@pobox.com>
2488
2489 PR libstdc++/47354
2490 * src/bitmap_allocator.cc (free_list::_M_get): Lock mutex.
2491
2492 2011-01-18 Benjamin Kosnik <bkoz@redhat.com>
2493
2494 * doc/xml/images/confdeps.png: Regenerate.
2495
2496 * include/std/chrono (duration): Mark copy constructor constexpr.
2497 * testsuite/20_util/duration/cons/constexpr.cc: Add test.
2498
2499 2011-01-18 Paolo Carlini <paolo.carlini@oracle.com>
2500
2501 * include/bits/unique_ptr.h (default_delete<>::default_delete()):
2502 Declare defaulted per DR 1517.
2503 * testsuite/util/testsuite_common_types.h
2504 (constexpr_defaulted_default_constructible): Add.
2505 * testsuite/20_util/default_delete/cons/constexpr.cc: Use it.
2506
2507 2011-01-17 Paolo Carlini <paolo.carlini@oracle.com>
2508
2509 * include/bits/stl_queue.h (queue<>::swap, priority_queue<>::swap):
2510 Implement DR 1198.
2511 * include/bits/stl_stack.h (stack<>::swap): Likewise.
2512
2513 2011-01-16 Paolo Carlini <paolo.carlini@oracle.com>
2514
2515 PR libstdc++/47323
2516 * testsuite/28_regex/08_basic_regex/requirements/constexpr_data.cc:
2517 Only test wregex when _GLIBCXX_USE_WCHAR_T is defined.
2518
2519 2011-01-16 Paolo Carlini <paolo.carlini@oracle.com>
2520
2521 PR libstdc++/47320
2522 * testsuite/18_support/numeric_limits/lowest.cc:
2523 Only test wchar_t when _GLIBCXX_USE_WCHAR_T is defined.
2524
2525 2011-01-16 Paolo Carlini <paolo.carlini@oracle.com>
2526
2527 PR libstdc++/47321
2528 * testsuite/21_strings/basic_string/requirements/typedefs.cc:
2529 Only test std::wstring when _GLIBCXX_USE_WCHAR_T is defined.
2530
2531 2011-01-16 François Dumont <francois.cppdevs@free.fr>
2532
2533 * testsuite/23_containers/forward_list/debug/erase_after1_neg.cc: Move
2534 to this. Use _neg suffix.
2535 * testsuite/23_containers/forward_list/debug/erase_after1.cc: ...from
2536 this.
2537 * testsuite/23_containers/forward_list/debug/erase_after2_neg.cc:
2538 Same.
2539 * testsuite/23_containers/forward_list/debug/erase_after2.cc: Same.
2540 * testsuite/23_containers/forward_list/debug/erase_after3_neg.cc:
2541 Same.
2542 * testsuite/23_containers/forward_list/debug/erase_after3.cc: Same.
2543 * testsuite/23_containers/forward_list/debug/erase_after4_neg.cc:
2544 Same.
2545 * testsuite/23_containers/forward_list/debug/erase_after4.cc: Same.
2546 * testsuite/23_containers/forward_list/debug/erase_after5_neg.cc:
2547 Same.
2548 * testsuite/23_containers/forward_list/debug/erase_after5.cc: Same.
2549 * testsuite/23_containers/forward_list/debug/erase_after6_neg.cc:
2550 Same.
2551 * testsuite/23_containers/forward_list/debug/erase_after6.cc: Same.
2552 * testsuite/23_containers/forward_list/debug/erase_after7_neg.cc:
2553 Same.
2554 * testsuite/23_containers/forward_list/debug/erase_after7.cc: Same.
2555 * testsuite/23_containers/forward_list/debug/erase_after8_neg.cc:
2556 Same.
2557 * testsuite/23_containers/forward_list/debug/erase_after8.cc: Same.
2558 * testsuite/23_containers/forward_list/debug/erase_after9_neg.cc:
2559 Same.
2560 * testsuite/23_containers/forward_list/debug/erase_after9.cc: Same.
2561 * testsuite/23_containers/forward_list/debug/insert_after1_neg.cc:
2562 Same.
2563 * testsuite/23_containers/forward_list/debug/insert_after1.cc: Same.
2564 * testsuite/23_containers/forward_list/debug/insert_after2_neg.cc:
2565 Same.
2566 * testsuite/23_containers/forward_list/debug/insert_after2.cc: Same.
2567 * testsuite/23_containers/forward_list/debug/insert_after3_neg.cc:
2568 Same.
2569 * testsuite/23_containers/forward_list/debug/insert_after3.cc: Same.
2570 * testsuite/23_containers/forward_list/debug/splice_after1_neg.cc:
2571 Same.
2572 * testsuite/23_containers/forward_list/debug/splice_after1.cc: Same.
2573 * testsuite/23_containers/forward_list/debug/splice_after2_neg.cc:
2574 Same.
2575 * testsuite/23_containers/forward_list/debug/splice_after2.cc: Same.
2576 * testsuite/23_containers/forward_list/debug/splice_after3_neg.cc:
2577 Same.
2578 * testsuite/23_containers/forward_list/debug/splice_after3.cc: Same.
2579 * testsuite/23_containers/forward_list/debug/splice_after4_neg.cc:
2580 Same.
2581 * testsuite/23_containers/forward_list/debug/splice_after4.cc: Same.
2582
2583 2011-01-14 Benjamin Kosnik <bkoz@redhat.com>
2584
2585 PR libstdc++/36104
2586 * include/Makefile.am (bits_sup_headers, stamp-bits-sup): New.
2587 * include/Makefile.in: Regenerate.
2588 * libsupc++/Makefile.am (std_HEADERS, bits_HEADERS): New.
2589 (install-stdHEADERS, install-bitsHEADERS): New.
2590 * libsupc++/Makefile.in: Regenerate.
2591
2592 * include/bits/c++config: Update for inline namespaces.
2593 * libsupc++/cxxabi-forced.h: To...
2594 * libsupc++/cxxabi_forced.h: ...this.
2595 * libsupc++/hash_bytes.h: Separate file.
2596 * libsupc++/typeinfo: Use it.
2597 * libsupc++/exception: Adjust for bits subdirectory.
2598 * libsupc++/eh_aux_runtime.cc: Same.
2599 * libsupc++/eh_ptr.cc: Same.
2600 * libsupc++/new_op.cc: Same.
2601 * libsupc++/exception_defines.h: Same.
2602 * libsupc++/nested_exception.h: Same.
2603 * libsupc++/eh_terminate.cc: Same.
2604 * libsupc++/vec.cc: Same.
2605 * libsupc++/vterminate.cc: Same.
2606 * libsupc++/exception_ptr.h: Same.
2607 * libsupc++/eh_personality.cc: Same.
2608 * libsupc++/eh_call.cc: Same.
2609 * libsupc++/new_opnt.cc: Same.
2610 * libsupc++/hash_bytes.cc: Same.
2611 * config/cpu/arm/cxxabi_tweaks.h: Same.
2612 * config/cpu/generic/cxxabi_tweaks.h: Same.
2613 * libsupc++/cxxabi.h: Same. Consolidate _GLIBCXX_NOTHROW defines.
2614 * include/std/bitset: Same.
2615 * include/ext/vstring.tcc: Same.
2616 * include/bits/hashtable.h: Same.
2617 * include/bits/functional_hash.h: Same.
2618 * include/bits/hashtable_policy.h: Same.
2619 * include/bits/basic_string.h: Same.
2620 * include/bits/istream.tcc: Same.
2621 * include/bits/ostream.tcc: Same.
2622 * include/bits/algorithmfwd.h: Same.
2623 * include/bits/basic_string.tcc: Same.
2624 * include/bits/ostream_insert.h: Same.
2625 * include/bits/fstream.tcc: Same.
2626 * include/bits/functexcept.h: Same.
2627
2628 * doc/doxygen/user.cfg.in: Adjust names.
2629
2630 * testsuite/ext/profile/mutex_extensions_neg.cc: Adjust line numbers.
2631
2632 2011-01-14 Paolo Carlini <paolo.carlini@oracle.com>
2633
2634 * testsuite/25_algorithms/is_permutation/check_type.cc: Minor
2635 tweaks.
2636 * testsuite/25_algorithms/is_permutation/1.cc: Cosmetic changes.
2637
2638 2011-01-13 Paolo Carlini <paolo.carlini@oracle.com>
2639
2640 * testsuite/25_algorithms/is_permutation/check_type.cc: New.
2641 * testsuite/25_algorithms/is_permutation/requirements/
2642 explicit_instantiation/2.cc: Likewise.
2643 * testsuite/25_algorithms/is_permutation/requirements/
2644 explicit_instantiation/pod.cc: Likewise.
2645 * testsuite/25_algorithms/is_permutation/1.cc: Likewise.
2646
2647 2011-01-13 John Lakos <jlakos@bloomberg.net>
2648 Pablo Halpern <phalpern@halpernwightsoftware.com>
2649 Paolo Carlini <paolo.carlini@oracle.com>
2650
2651 * include/bits/stl_algo.h (is_permutation): Add, per N3068.
2652 * include/bits/algorithmfwd.h: Add.
2653
2654 2011-01-13 Jonathan Wakely <jwakely.gcc@gmail.com>
2655
2656 PR libstdc++/47045
2657 * config/os/bsd/netbsd/ctype_base.h: Use new macros based on version.
2658
2659 2011-01-11 Paolo Carlini <paolo.carlini@oracle.com>
2660
2661 * aclocal.m4: Regenerate.
2662
2663 2011-01-06 Paolo Carlini <paolo.carlini@oracle.com>
2664
2665 PR libstdc++/47185
2666 * src/placeholders.cc: New.
2667 * src/Makefile.am: Adjust.
2668 * src/Makefile.in: Regenerate.
2669 * include/std/functional (placeholders::_1, _2, ..., _29): Declare
2670 extern.
2671 * config/abi/pre/gnu.ver: Export.
2672
2673 2011-01-05 François Dumont <francois.cppdevs@free.fr>
2674
2675 * include/debug/safe_base.h (_Safe_iterator_base::_M_unlink): New.
2676 * include/src/debug.cc: Use latter
2677 * include/debug/forward_list (forward_list<>::_M_swap): Fix to
2678 correctly handle before_begin iterators.
2679 * testsuite/23_containers/forward_list/debug/swap.cc: Remove now
2680 useless _GLIBCXX_DEBUG checks.
2681
2682 2011-01-04 Kai Tietz <kai.tietz@onevision.com>
2683
2684 PR libstdc++/47145
2685 * configure.ac (AC_CHECK_FILE): Replaced by test -f.
2686 * configure: Regenerated.
2687
2688 2011-01-03 Paolo Carlini <paolo.carlini@oracle.com>
2689
2690 PR libstdc++/46922
2691 * config/abi/pre/gnu.ver: Export std::bad_function_call symbols.
2692
2693 \f
2694 Copyright (C) 2011 Free Software Foundation, Inc.
2695
2696 Copying and distribution of this file, with or without modification,
2697 are permitted in any medium without royalty provided the copyright
2698 notice and this notice are preserved.