Index: gcc/ChangeLog
[gcc.git] / libstdc++-v3 / ChangeLog
1 2005-07-25 Geoffrey Keating <geoffk@apple.com>
2
3 * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Handle darwin-export,
4 and make it the default for Darwin.
5 * scripts/make-exports.pl: New.
6 * src/Makefile.am: Update for changes to GLIBCXX_ENABLE_SYMVERS.
7 Handle darwin-export.
8 * configure: Regenerate.
9 * include/Makefile.in: Regenerate.
10 * libmath/Makefile.in: Regenerate.
11 * libsupc++/Makefile.in: Regenerate.
12 * po/Makefile.in: Regenerate.
13 * src/Makefile.in: Regenerate.
14 * testsuite/Makefile.in: Regenerate.
15
16 2005-07-25 Dave Odell <evilalias@hotmail.com>
17
18 PR libstdc++/23053
19 * include/tr1/hashtable (hashtable<>::find_node): Const-ify.
20 * testsuite/tr1/6_containers/unordered/hashtable/23053.cc: New.
21
22 2005-07-25 Paolo Carlini <pcarlini@suse.de>
23
24 PR libstdc++/22515
25 * include/bits/basic_string.h: Declare the specialization
26 operator>>(basic_istream<char>&, basic_string<char>&).
27 * include/std/std_istream.h: Declate the specialization
28 operator>>(basic_istream<char>&, char*).
29 * include/std/std_streambuf.h (basic_streambuf): Add friend
30 declarations for the above.
31 * src/istream.cc: Define the above.
32 * testsuite/27_io/basic_istream/extractors_character/char/4.cc: New.
33 * testsuite/27_io/basic_istream/extractors_character/wchar_t/4.cc:
34 Likewise.
35 * testsuite/performance/27_io/ifstream_extract_chars.cc: Likewise.
36
37 2005-07-20 Paolo Carlini <pcarlini@suse.de>
38
39 * include/bits/streambuf.tcc (xsgetn, xsputn): Use streamsize
40 instead of size_t.
41 * src/streambuf.cc (__copy_streambufs): Likewise.
42
43 2005-07-18 Paolo Carlini <pcarlini@suse.de>
44
45 * config/locale/gnu/ctype_members.cc (do_is(mask, wchar_t)):
46 Speed-up for the common case of mask == ctype_base::space;
47 otherwise, exit the loop earlier if the mask is one of the
48 elementary ones.
49
50 2005-07-14 Paolo Carlini <pcarlini@suse.de>
51
52 PR libstdc++/21193 (float, double, long double)
53 * include/tr1/functional (hash<float>, hash<double>):
54 Reimplement exploiting the Fnv_hash<>::hash helper.
55 (hash<long double>): Reimplement using frexp (in this
56 case, due to random padding bits, the former approach
57 is not generally viable).
58
59 2005-07-13 Paolo Carlini <pcarlini@suse.de>
60
61 PR libstdc++/21193 (string & wstring)
62 * include/tr1/functional (hash<string>, hash<wstring>):
63 Reimplement using the FNV hash.
64
65 * include/tr1/functional: Trivial formatting fixes.
66
67 2005-07-11 Paolo Carlini <pcarlini@suse.de>
68
69 * include/bits/ostream.tcc (basic_ostream<>::operator<<(long),
70 basic_ostream<>::operator<<(long long)): Don't deal with oct
71 and hex and casts to unsigned here...
72 * include/bits/locale_facets.tcc (__int_to_char(_CharT*, long,
73 const _CharT*, ios_base::fmtflags), __int_to_char(_CharT*, long
74 long, const _CharT*, ios_base::fmtflags)): ... do that here,
75 instead, as per Table 57.
76 (num_put<>::_M_insert_int): Tidy treatment of numeric base and
77 sign.
78 * include/std/std_ostream.h (operator<<(short), operator<<(int)):
79 Adjust logic, as per the letter of the resolution of DR117 [WP].
80 * testsuite/22_locale/num_put/put/char/10.cc: New.
81 * testsuite/22_locale/num_put/put/wchar_t/10.cc: Likewise.
82 * testsuite/27_io/basic_ostream/inserters_arithmetic/char/7.cc:
83 Likewise.
84 * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/7.cc:
85 Likewise.
86
87 2005-07-07 David Edelsohn <edelsohn@gnu.org>
88
89 * testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc:
90 Change map_t to map_type.
91
92 2005-07-05 Paolo Carlini <pcarlini@suse.de>
93
94 Add class __versa_string, a versatile "basic_string-type" class:
95 an additional, non-standard, template parameter allows to specify
96 the preferred base class. Two are provided: __rc_string_base,
97 which implements a behavior very similar to our standard string,
98 and __sso_string_base, not reference-counted and optimized for
99 short strings.
100 * include/ext/rc_string_base.h: New.
101 * include/ext/sso_string_base.h: Likewise.
102 * include/ext/vstring.h: Likewise.
103 * include/ext/vstring.tcc: Likewise.
104 * include/ext/vstring_fwd.h: Likewise.
105 * include/ext/vstring_util.h: Likewise.
106 * include/Makefile.am: Add.
107 * include/Makefile.in: Regenerate.
108 * testsuite/ext/vstring/explicit_instantiation/1.cc: New.
109 * testsuite/ext/vstring/explicit_instantiation/2.cc: Likewise.
110 * testsuite/ext/vstring/explicit_instantiation/char/1.cc: Likewise.
111 * testsuite/ext/vstring/explicit_instantiation/wchar_t/1.cc: Likewise.
112
113 * Makefile.in: Regenerate with autotools 1.9.3 (to date, the version
114 officially used by v3).
115 * aclocal.m4: Likewise.
116 * libmath/Makefile.in: Likewise.
117 * libsupc++/Makefile.in: Likewise.
118 * po/Makefile.in: Likewise.
119 * src/Makefile.in: Likewise.
120 * testsuite/Makefile.in: Likewise.
121
122 2005-07-01 Paolo Carlini <pcarlini@suse.de>
123
124 Port from libstdcxx_so_7-branch:
125 2004-10-28 Chris Jefferson <chris@bubblescope.net>
126
127 PR libstdc++/17441
128 * include/bit/stl_algo.h (find(,,,input_iterator_tag),
129 find(,,,random_access_interator_tag),
130 find_if(,,,input_iterator_tag),
131 find_if(,,,random_access_iterator_tag)): Uglify function name.
132 (find, find_if): Use new uglified specialisation names.
133 * testsuite/25_algorithms/find/17441.cc: New.
134
135 2005-06-30 Ulrich Weigand <uweigand@de.ibm.com>
136
137 * include/ext/pb_assoc/detail/hash_fn/mask_based_range_hashing.hpp
138 (PB_ASSOC_CLASS_C_DEC::s_highest_bit_1): Cast constant 1 to target
139 type before shifting.
140
141 2005-06-29 Paolo Carlini <pcarlini@suse.de>
142
143 PR libstdc++/21244 (cont^2)
144 * include/ext/bitmap_allocator.h: Convert everywhere
145 bits_per_block to size_t.
146
147 2005-06-29 Jonathan Wakely <redi@gcc.gnu.org>
148
149 * include/bits/basic_string.h, include/bits/locale_facets.h: Fix
150 Doxygen comments that use wrong parameter and function names.
151
152 2005-06-29 Paolo Carlini <pcarlini@suse.de>
153
154 * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 37.
155 * docs/html/ext/howto.html: Adjust.
156
157 2005-06-29 Paolo Carlini <pcarlini@suse.de>
158
159 PR libstdc++/22131
160 * include/bits/locale_facets.tcc (num_get<>::_M_extract_int,
161 num_get<>::_M_extract_float, money_get<>::_M_extract):
162 Adjust to assign the result also when digit grouping is
163 wrong (but the grammar is correct), as per 22.2.2.1.2, p11-12
164 (NB: consistently for money_get too).
165 * config/locale/generic/c_locale.cc (__convert_to_v): Do
166 not check ios_base::failbit at the outset.
167 * config/locale/gnu/c_locale.cc: Likewise.
168 * testsuite/22_locale/money_get/get/char/22131.cc: New.
169 * testsuite/22_locale/money_get/get/wchar_t/22131.cc: Likewise.
170 * testsuite/22_locale/num_get/get/char/22131.cc: Likewise.
171 * testsuite/22_locale/num_get/get/wchar_t/22131.cc: Likewise.
172 * testsuite/22_locale/num_get/get/char/12.cc: Adjust.
173 * testsuite/22_locale/num_get/get/wchar_t/12.cc: Likewise.
174 * testsuite/27_io/basic_istream/extractors_arithmetic/char/07.cc:
175 Likewise.
176 * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/07.cc:
177 Likewise.
178
179 2005-06-28 Paul Brook <paul@codesourcery.com>
180
181 * acinclude.m4 (GLIBCXX_ENABLE_SJLJ_EXCEPTIONS): Check for
182 __cxa_end_cleanup.
183 * libsupc++/Makefile.am (sources): Add eh_call.c and eh_arm.c.
184 * libsupc++/eh_arm.cc: New file.
185 * libsupc++/eh_call.cc: New file.
186 * libsupc++/eh_catch.cc (__cxa_get_exception_ptr): Use
187 __gxx_caught_object.
188 (__cxa_begin_catch): Ditto. Use __is_gxx_exception_class. Call
189 _Unwind_Complete when using the ARM EABI.
190 (__cxa_end_catch): Use __is_gxx_exception_class.
191 * libsupc++/eh_personality.cc: Define NO_SIZE_OF_ENCODED_VALUE when
192 using the ARM EABI.
193 (save_caught_exception, restore_caught_exception): New functions.
194 (_throw_typet): New typedef.
195 (get_ttype_entry, get_adjusted_ptr, check_exception_spec): Add ARM
196 EABI implementations.
197 (PERSONALITY_FUNCTION): Use new functions. Addd support for ARM EABI
198 unwinding libary.
199 (__cxa_unexpected): Disable when using the ARM EABI.
200 * libsupc++/eh_throw.cc (__cxa_throw): Use __GXX_INIT_EXCEPTION_CLASS.
201 (__cxa_rethrow): Use __is_gxx_exception_class. Call
202 _Unwind_RaiseException when using the ARM EABI.
203 * libsupc++/unwind-cxx.h (struct __cxa_exception): Add fields for ARM
204 EABI semantics.
205 (struct __cxa_eh_globals): Ditto.
206 (__cxa_call_terminate): Add prototype.
207 (__cxa_type_match, __cxa_begin_cleanup, __cxa_end_cleanup): Add
208 prototypes.
209 (__get_exception_header_from_obj, __get_exception_header_from_ue):
210 Move earlier in file.
211 (__is_gxx_exception_class, __GXX_INIT_EXCEPTION_CLASS,
212 __gxx_caught_object): New functions.
213 * aclocal.m4: Regenerate.
214 * configure: Regenerate.
215 * Makefile.in: Regenerate.
216 * include/Makefile.in: Regenerate.
217 * libmath/Makefile.in: Regenerate.
218 * libsupc++/Makefile.in: Regenerate.
219 * po/Makefile.in: Regenerate.
220 * src/Makefie.in: Regenerate.
221 * testsuite/makefile.in: Regenerate.
222
223 2005-06-27 Paolo Carlini <pcarlini@suse.de>
224
225 PR libstdc++/22102
226 * include/bits/stl_tree.h (insert_unique(iterator, const _Val&),
227 insert_equal((iterator, const _Val&)): Reimplement to check both
228 before and after, as per the algorithm "ignore hint if wrong" of
229 ISO paper N1780.
230
231 2005-06-27 Benjamin Kosnik <bkoz@redhat.com>
232 Ami Tavory <pbassoc@gmail.com>
233
234 * docs/html/documentation.html: Add link for policy based
235 associative containers docs.
236 * docs/html/ext/pb_assoc/Std_hash_set_impl.jpg: New.
237 * docs/html/ext/pb_assoc/acks.html: New.
238 * docs/html/ext/pb_assoc/balls_and_bins.jpg: New.
239 * docs/html/ext/pb_assoc/basic_assoc_cntnr.html: New.
240 * docs/html/ext/pb_assoc/basic_assoc_cntnr_compound_data.html: New.
241 * docs/html/ext/pb_assoc/basic_assoc_cntnr_no_data.html: New.
242 * docs/html/ext/pb_assoc/basic_ds_tag.html: New.
243 * docs/html/ext/pb_assoc/basic_hash_assoc_cntnr.html: New.
244 * docs/html/ext/pb_assoc/basic_hash_ds_tag.html: New.
245 * docs/html/ext/pb_assoc/basic_invalidation_guarantee.html: New.
246 * docs/html/ext/pb_assoc/basic_ms_tag.html: New.
247 * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr.html: New.
248 * docs/html/ext/pb_assoc/
249 basic_tree_assoc_cntnr_const_node_iterator.html: New.
250 * docs/html/ext/pb_assoc/
251 basic_tree_assoc_cntnr_node_iterator.html: New.
252 * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr_rev.html: New.
253 * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr_rev_it.html: New.
254 * docs/html/ext/pb_assoc/basic_tree_ds_tag.html: New.
255 * docs/html/ext/pb_assoc/cc_hash_assoc_cntnr.html: New.
256 * docs/html/ext/pb_assoc/cc_hash_ds_tag.html: New.
257 * docs/html/ext/pb_assoc/
258 cc_hash_max_collision_check_resize_trigger.html: New.
259 * docs/html/ext/pb_assoc/cc_hash_policy_cd.jpg: New.
260 * docs/html/ext/pb_assoc/cd.jpg: New.
261 * docs/html/ext/pb_assoc/component_requirements.html: New.
262 * docs/html/ext/pb_assoc/compound_data_enabled_ms_tag.html: New.
263 * docs/html/ext/pb_assoc/compound_data_type.html: New.
264 * docs/html/ext/pb_assoc/compound_ds_tag.html: New.
265 * docs/html/ext/pb_assoc/concepts.html: New.
266 * docs/html/ext/pb_assoc/contact.html: New.
267 * docs/html/ext/pb_assoc/counter_update_metadata.html: New.
268 * docs/html/ext/pb_assoc/counter_update_policy.html: New.
269 * docs/html/ext/pb_assoc/data_enabled_ms_tag.html: New.
270 * docs/html/ext/pb_assoc/design.html: New.
271 * docs/html/ext/pb_assoc/different_underlying_dss.jpg: New.
272 * docs/html/ext/pb_assoc/direct_mask_range_hashing.html: New.
273 * docs/html/ext/pb_assoc/direct_mod_range_hashing.html: New.
274 * docs/html/ext/pb_assoc/disclaimer.html: New.
275 * docs/html/ext/pb_assoc/ds_gen.html: New.
276 * docs/html/ext/pb_assoc/ds_tag_cd.jpg: New.
277 * docs/html/ext/pb_assoc/ds_traits.html: New.
278 * docs/html/ext/pb_assoc/embedded_lists_1.jpg: New.
279 * docs/html/ext/pb_assoc/embedded_lists_2.jpg: New.
280 * docs/html/ext/pb_assoc/examples.html: New.
281 * docs/html/ext/pb_assoc/exception_guarantees_specifics.html: New.
282 * docs/html/ext/pb_assoc/find_invalidation_guarantee.html: New.
283 * docs/html/ext/pb_assoc/find_iterators_cd.jpg: New.
284 * docs/html/ext/pb_assoc/find_iterators_range_ops_1.jpg: New.
285 * docs/html/ext/pb_assoc/find_iterators_range_ops_2.jpg: New.
286 * docs/html/ext/pb_assoc/generics.html: New.
287 * docs/html/ext/pb_assoc/gp_hash_assoc_cntnr.html: New.
288 * docs/html/ext/pb_assoc/gp_hash_ds_tag.html: New.
289 * docs/html/ext/pb_assoc/gp_hash_policy_cd.jpg: New.
290 * docs/html/ext/pb_assoc/hash_and_probe_general.html: New.
291 * docs/html/ext/pb_assoc/hash_based_containers.html: New.
292 * docs/html/ext/pb_assoc/hash_cd.jpg: New.
293 * docs/html/ext/pb_assoc/hash_exponential_size_policy.html: New.
294 * docs/html/ext/pb_assoc/hash_fn.html: New.
295 * docs/html/ext/pb_assoc/hash_load_check_resize_trigger.html: New.
296 * docs/html/ext/pb_assoc/hash_policies.html: New.
297 * docs/html/ext/pb_assoc/hash_policy_cd.jpg: New.
298 * docs/html/ext/pb_assoc/hash_prime_size_policy.html: New.
299 * docs/html/ext/pb_assoc/hash_range_hashing_seq_diagram.jpg: New.
300 * docs/html/ext/pb_assoc/hash_range_hashing_seq_diagram2.jpg: New.
301 * docs/html/ext/pb_assoc/hash_ranged_hash_range_hashing_fns.jpg: New.
302 * docs/html/ext/pb_assoc/hash_standard_resize_policy.html: New.
303 * docs/html/ext/pb_assoc/home.html: New.
304 * docs/html/ext/pb_assoc/index.html: New.
305 * docs/html/ext/pb_assoc/insert_resize_sequence_diagram1.jpg: New.
306 * docs/html/ext/pb_assoc/insert_resize_sequence_diagram2.jpg: New.
307 * docs/html/ext/pb_assoc/insert_resize_sequence_diagram3.jpg: New.
308 * docs/html/ext/pb_assoc/insert_type_methods.html: New.
309 * docs/html/ext/pb_assoc/interface.html: New.
310 * docs/html/ext/pb_assoc/interval_node_invariants.jpg: New.
311 * docs/html/ext/pb_assoc/introduction.html: New.
312 * docs/html/ext/pb_assoc/invalidation_guarantee_cd.jpg: New.
313 * docs/html/ext/pb_assoc/invalidation_guarantee_erase.jpg: New.
314 * docs/html/ext/pb_assoc/lib_download.html: New.
315 * docs/html/ext/pb_assoc/linear_probe_fn.html: New.
316 * docs/html/ext/pb_assoc/list_updates.html: New.
317 * docs/html/ext/pb_assoc/lu_assoc_cntnr.html: New.
318 * docs/html/ext/pb_assoc/lu_based_containers.html: New.
319 * docs/html/ext/pb_assoc/lu_cd.jpg: New.
320 * docs/html/ext/pb_assoc/lu_ds_tag.html: New.
321 * docs/html/ext/pb_assoc/lu_ops.jpg: New.
322 * docs/html/ext/pb_assoc/mmap_value_utils.html: New.
323 * docs/html/ext/pb_assoc/motivation.html: New.
324 * docs/html/ext/pb_assoc/move_to_front_update_metadata.html: New.
325 * docs/html/ext/pb_assoc/move_to_front_update_policy.html: New.
326 * docs/html/ext/pb_assoc/ms_cd.jpg: New.
327 * docs/html/ext/pb_assoc/ms_gen.html: New.
328 * docs/html/ext/pb_assoc/ms_tag_cd.jpg: New.
329 * docs/html/ext/pb_assoc/ms_traits.html: New.
330 * docs/html/ext/pb_assoc/node_invariant_invalidations.jpg: New.
331 * docs/html/ext/pb_assoc/node_invariants.html: New.
332 * docs/html/ext/pb_assoc/node_invariants.jpg: New.
333 * docs/html/ext/pb_assoc/non_unique_mapping.html: New.
334 * docs/html/ext/pb_assoc/non_unique_mapping_containers.jpg: New.
335 * docs/html/ext/pb_assoc/null_data_type.html: New.
336 * docs/html/ext/pb_assoc/null_hash_fn.html: New.
337 * docs/html/ext/pb_assoc/null_probe_fn.html: New.
338 * docs/html/ext/pb_assoc/order_by_key.html: New.
339 * docs/html/ext/pb_assoc/order_statistics_key.html: New.
340 * docs/html/ext/pb_assoc/order_statistics_key_cmp.html: New.
341 * docs/html/ext/pb_assoc/order_statistics_node_updator.html: New.
342 * docs/html/ext/pb_assoc/ov_tree_ds_tag.html: New.
343 * docs/html/ext/pb_assoc/overview.html: New.
344 * docs/html/ext/pb_assoc/pb_assoc_ex.html: New.
345 * docs/html/ext/pb_assoc/portability.html: New.
346 * docs/html/ext/pb_assoc/quadratic_probe_fn.html: New.
347 * docs/html/ext/pb_assoc/range_invalidation_guarantee.html: New.
348 * docs/html/ext/pb_assoc/rank_node_invariants.jpg: New.
349 * docs/html/ext/pb_assoc/rationale_null_node_updator.jpg: New.
350 * docs/html/ext/pb_assoc/rb_tree_ds_tag.html: New.
351 * docs/html/ext/pb_assoc/reference_iterator.jpg: New.
352 * docs/html/ext/pb_assoc/references.html: New.
353 * docs/html/ext/pb_assoc/regression_tests.html: New.
354 * docs/html/ext/pb_assoc/resize_general.html: New.
355 * docs/html/ext/pb_assoc/resize_policies.html: New.
356 * docs/html/ext/pb_assoc/resize_policy_cd.jpg: New.
357 * docs/html/ext/pb_assoc/restoring_node_invariants.jpg: New.
358 * docs/html/ext/pb_assoc/sample_node_updator.hpp: New.
359 * docs/html/ext/pb_assoc/sample_probe_fn.hpp: New.
360 * docs/html/ext/pb_assoc/sample_probe_fn.html: New.
361 * docs/html/ext/pb_assoc/sample_range_hashing.hpp: New.
362 * docs/html/ext/pb_assoc/sample_range_hashing.html: New.
363 * docs/html/ext/pb_assoc/sample_ranged_hash_fn.hpp: New.
364 * docs/html/ext/pb_assoc/sample_ranged_hash_fn.html: New.
365 * docs/html/ext/pb_assoc/sample_ranged_probe_fn.hpp: New.
366 * docs/html/ext/pb_assoc/sample_ranged_probe_fn.html: New.
367 * docs/html/ext/pb_assoc/sample_resize_policy.hpp: New.
368 * docs/html/ext/pb_assoc/sample_resize_policy.html: New.
369 * docs/html/ext/pb_assoc/sample_resize_trigger.hpp: New.
370 * docs/html/ext/pb_assoc/sample_size_policy.hpp: New.
371 * docs/html/ext/pb_assoc/sample_update_policy.hpp: New.
372 * docs/html/ext/pb_assoc/size_policies_general.html: New.
373 * docs/html/ext/pb_assoc/splay_tree_ds_tag.html: New.
374 * docs/html/ext/pb_assoc/timing_tests.html: New.
375 * docs/html/ext/pb_assoc/toc.html: New.
376 * docs/html/ext/pb_assoc/tree_assoc_cntnr.html: New.
377 * docs/html/ext/pb_assoc/
378 tree_assoc_cntnr_const_node_iterator.html: New.
379 * docs/html/ext/pb_assoc/tree_assoc_cntnr_node_iterator.html: New.
380 * docs/html/ext/pb_assoc/tree_based_containers.html: New.
381 * docs/html/ext/pb_assoc/tree_cd.jpg: New.
382 * docs/html/ext/pb_assoc/trigger_policies_general.html: New.
383 * docs/html/ext/pb_assoc/tutorial.html: New.
384 * docs/html/ext/pb_assoc/update_seq_diagram.jpg: New.
385 * include/Makefile.am: Add assoc_srcdir, assoc_builddir, assoc_subdir,
386 assoc_headers.
387 * include/Makefile.in: Regenerate.
388 * include/ext/typelist.h: New.
389 * include/ext/pb_assoc/assoc_cntnr.hpp: New.
390 * include/ext/pb_assoc/data_type.hpp: New.
391 * include/ext/pb_assoc/ds_trait.hpp: New.
392 * include/ext/pb_assoc/exception.hpp: New.
393 * include/ext/pb_assoc/hash_policy.hpp: New.
394 * include/ext/pb_assoc/lu_policy.hpp: New.
395 * include/ext/pb_assoc/ms_trait.hpp: New.
396 * include/ext/pb_assoc/tree_policy.hpp: New.
397 * include/ext/pb_assoc/trivial_iterator_def.hpp: New.
398 * include/ext/pb_assoc/detail/assoc_cntnr_base.hpp: New.
399 * include/ext/pb_assoc/detail/cond_dealtor.hpp: New.
400 * include/ext/pb_assoc/detail/constructors_destructor_fn_imps.hpp: New.
401 * include/ext/pb_assoc/detail/ds_trait_imp.hpp: New.
402 * include/ext/pb_assoc/detail/hash_types_traits.hpp: New.
403 * include/ext/pb_assoc/detail/map_debug_base.hpp: New.
404 * include/ext/pb_assoc/detail/mapping_level_imp.hpp: New.
405 * include/ext/pb_assoc/detail/ms_category_imp.hpp: New.
406 * include/ext/pb_assoc/detail/ms_trait_imp.hpp: New.
407 * include/ext/pb_assoc/detail/order_statistics_imp.hpp: New.
408 * include/ext/pb_assoc/detail/standard_policies.hpp: New.
409 * include/ext/pb_assoc/detail/standard_sizes.hpp: New.
410 * include/ext/pb_assoc/detail/type_utils.hpp: New.
411 * include/ext/pb_assoc/detail/typelist.hpp: New.
412 * include/ext/pb_assoc/detail/types_traits.hpp: New.
413 * include/ext/pb_assoc/detail/basic_assoc_cntnr/
414 constructor_destructor_fn_imps.hpp: New.
415 * include/ext/pb_assoc/detail/basic_assoc_cntnr/
416 constructors_destructor_fn_imps.hpp: New.
417 * include/ext/pb_assoc/detail/basic_assoc_cntnr/d_extract_key.hpp: New.
418 * include/ext/pb_assoc/detail/basic_assoc_cntnr/
419 d_find_fn_imps.hpp: New.
420 * include/ext/pb_assoc/detail/basic_assoc_cntnr/
421 d_insert_fn_imps.hpp: New.
422 * include/ext/pb_assoc/detail/basic_assoc_cntnr/erase_fn_imps.hpp: New.
423 * include/ext/pb_assoc/detail/basic_assoc_cntnr/extract_key.hpp: New.
424 * include/ext/pb_assoc/detail/basic_assoc_cntnr/info_fn_imps.hpp: New.
425 * include/ext/pb_assoc/detail/basic_assoc_cntnr/
426 insert_fn_imps.hpp: New.
427 * include/ext/pb_assoc/detail/basic_assoc_cntnr/
428 iterators_fn_imps.hpp: New.
429 * include/ext/pb_assoc/detail/basic_hash_assoc_cntnr/
430 constructor_destructor_fn_imps.hpp: New.
431 * include/ext/pb_assoc/detail/basic_hash_assoc_cntnr/
432 constructors_destructor_fn_imps.hpp: New.
433 * include/ext/pb_assoc/detail/basic_hash_assoc_cntnr/
434 resize_fn_imps.hpp: New.
435 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
436 constructor_destructor_fn_imps.hpp: New.
437 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
438 constructors_destructor_fn_imps.hpp: New.
439 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
440 erase_fn_imps.hpp: New.
441 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
442 node_iteration_fn_imps.hpp: New.
443 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
444 policy_access_fn_imps.hpp: New.
445 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
446 r_erase_fn_imps.hpp: New.
447 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
448 r_range_iteration_fn_imps.hpp: New.
449 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
450 range_iteration_fn_imps.hpp: New.
451 * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
452 split_join_fn_imps.hpp: New.
453 * include/ext/pb_assoc/detail/bin_search_tree_/
454 bin_search_tree_.hpp: New.
455 * include/ext/pb_assoc/detail/bin_search_tree_/
456 cond_dtor_entry_dealtor.hpp: New.
457 * include/ext/pb_assoc/detail/bin_search_tree_/
458 cond_key_dtor_entry_dealtor.hpp: New.
459 * include/ext/pb_assoc/detail/bin_search_tree_/
460 constructors_destructor_fn_imps.hpp: New.
461 * include/ext/pb_assoc/detail/bin_search_tree_/debug_fn_imps.hpp: New.
462 * include/ext/pb_assoc/detail/bin_search_tree_/erase_fn_imps.hpp: New.
463 * include/ext/pb_assoc/detail/bin_search_tree_/find_fn_imps.hpp: New.
464 * include/ext/pb_assoc/detail/bin_search_tree_/find_iterators.hpp: New.
465 * include/ext/pb_assoc/detail/bin_search_tree_/info_fn_imps.hpp: New.
466 * include/ext/pb_assoc/detail/bin_search_tree_/insert_fn_imps.hpp: New.
467 * include/ext/pb_assoc/detail/bin_search_tree_/
468 iterators_fn_imps.hpp: New.
469 * include/ext/pb_assoc/detail/bin_search_tree_/node_iterators.hpp: New.
470 * include/ext/pb_assoc/detail/bin_search_tree_/
471 r_erase_fn_imps.hpp: New.
472 * include/ext/pb_assoc/detail/bin_search_tree_/rotate_fn_imps.hpp: New.
473 * include/ext/pb_assoc/detail/bin_search_tree_/
474 split_join_fn_imps.hpp: New.
475 * include/ext/pb_assoc/detail/cc_hash_assoc_cntnr/
476 constructor_destructor_fn_imps.hpp: New.
477 * include/ext/pb_assoc/detail/cc_ht_map_/cc_ht_map_.hpp: New.
478 * include/ext/pb_assoc/detail/cc_ht_map_/cmp_fn_imps.hpp: New.
479 * include/ext/pb_assoc/detail/cc_ht_map_/
480 cond_key_dtor_entry_dealtor.hpp: New.
481 * include/ext/pb_assoc/detail/cc_ht_map_/
482 constructor_destructor_fn_imps.hpp: New.
483 * include/ext/pb_assoc/detail/cc_ht_map_/
484 constructor_destructor_no_store_hash_fn_imps.hpp: New.
485 * include/ext/pb_assoc/detail/cc_ht_map_/
486 constructor_destructor_store_hash_fn_imps.hpp: New.
487 * include/ext/pb_assoc/detail/cc_ht_map_/debug_fn_imps.hpp: New.
488 * include/ext/pb_assoc/detail/cc_ht_map_/
489 debug_no_store_hash_fn_imps.hpp: New.
490 * include/ext/pb_assoc/detail/cc_ht_map_/
491 debug_store_hash_fn_imps.hpp: New.
492 * include/ext/pb_assoc/detail/cc_ht_map_/entry_list_fn_imps.hpp: New.
493 * include/ext/pb_assoc/detail/cc_ht_map_/erase_fn_imps.hpp: New.
494 * include/ext/pb_assoc/detail/cc_ht_map_/
495 erase_no_store_hash_fn_imps.hpp: New.
496 * include/ext/pb_assoc/detail/cc_ht_map_/
497 erase_store_hash_fn_imps.hpp: New.
498 * include/ext/pb_assoc/detail/cc_ht_map_/
499 find_fn_imps.hpp: New.
500 * include/ext/pb_assoc/detail/cc_ht_map_/
501 find_no_store_hash_fn_imps.hpp: New.
502 * include/ext/pb_assoc/detail/cc_ht_map_/
503 find_store_hash_fn_imps.hpp: New.
504 * include/ext/pb_assoc/detail/cc_ht_map_/info_fn_imps.hpp: New.
505 * include/ext/pb_assoc/detail/cc_ht_map_/insert_fn_imps.hpp: New.
506 * include/ext/pb_assoc/detail/cc_ht_map_/
507 insert_no_store_hash_fn_imps.hpp: New.
508 * include/ext/pb_assoc/detail/cc_ht_map_/
509 insert_store_hash_fn_imps.hpp: New.
510 * include/ext/pb_assoc/detail/cc_ht_map_/iterators_fn_imps.hpp: New.
511 * include/ext/pb_assoc/detail/cc_ht_map_/
512 policy_access_fn_imps.hpp: New.
513 * include/ext/pb_assoc/detail/cc_ht_map_/resize_fn_imps.hpp: New.
514 * include/ext/pb_assoc/detail/cc_ht_map_/
515 resize_no_store_hash_fn_imps.hpp: New.
516 * include/ext/pb_assoc/detail/cc_ht_map_/
517 resize_store_hash_fn_imps.hpp: New.
518 * include/ext/pb_assoc/detail/cc_ht_map_/size_fn_imps.hpp: New.
519 * include/ext/pb_assoc/detail/cc_ht_map_/standard_policies.hpp: New.
520 * include/ext/pb_assoc/detail/eq_fn/eq_by_less.hpp: New.
521 * include/ext/pb_assoc/detail/eq_fn/hash_eq_fn.hpp: New.
522 * include/ext/pb_assoc/detail/gp_hash_assoc_cntnr/
523 constructor_destructor_fn_imps.hpp: New.
524 * include/ext/pb_assoc/detail/gp_ht_map_/
525 constructor_destructor_fn_imps.hpp: New.
526 * include/ext/pb_assoc/detail/gp_ht_map_/
527 constructor_destructor_no_store_hash_fn_imps.hpp: New.
528 * include/ext/pb_assoc/detail/gp_ht_map_/
529 constructor_destructor_store_hash_fn_imps.hpp: New.
530 * include/ext/pb_assoc/detail/gp_ht_map_/debug_fn_imps.hpp: New.
531 * include/ext/pb_assoc/detail/gp_ht_map_/
532 debug_no_store_hash_fn_imps.hpp: New.
533 * include/ext/pb_assoc/detail/gp_ht_map_/
534 debug_store_hash_fn_imps.hpp: New.
535 * include/ext/pb_assoc/detail/gp_ht_map_/erase_fn_imps.hpp: New.
536 * include/ext/pb_assoc/detail/gp_ht_map_/
537 erase_no_store_hash_fn_imps.hpp: New.
538 * include/ext/pb_assoc/detail/gp_ht_map_/
539 erase_store_hash_fn_imps.hpp: New.
540 * include/ext/pb_assoc/detail/gp_ht_map_/find_fn_imps.hpp: New.
541 * include/ext/pb_assoc/detail/gp_ht_map_/
542 find_no_store_hash_fn_imps.hpp: New.
543 * include/ext/pb_assoc/detail/gp_ht_map_/
544 find_store_hash_fn_imps.hpp: New.
545 * include/ext/pb_assoc/detail/gp_ht_map_/gp_ht_map_.hpp: New.
546 * include/ext/pb_assoc/detail/gp_ht_map_/info_fn_imps.hpp: New.
547 * include/ext/pb_assoc/detail/gp_ht_map_/insert_fn_imps.hpp: New.
548 * include/ext/pb_assoc/detail/gp_ht_map_/
549 insert_no_store_hash_fn_imps.hpp: New.
550 * include/ext/pb_assoc/detail/gp_ht_map_/
551 insert_store_hash_fn_imps.hpp: New.
552 * include/ext/pb_assoc/detail/gp_ht_map_/iterator_fn_imps.hpp: New.
553 * include/ext/pb_assoc/detail/gp_ht_map_/
554 policy_access_fn_imps.hpp: New.
555 * include/ext/pb_assoc/detail/gp_ht_map_/resize_fn_imps.hpp: New.
556 * include/ext/pb_assoc/detail/gp_ht_map_/
557 resize_no_store_hash_fn_imps.hpp: New.
558 * include/ext/pb_assoc/detail/gp_ht_map_/
559 resize_store_hash_fn_imps.hpp: New.
560 * include/ext/pb_assoc/detail/hash_fn/
561 direct_mask_range_hashing_imp.hpp: New.
562 * include/ext/pb_assoc/detail/hash_fn/
563 direct_mod_range_hashing_imp.hpp: New.
564 * include/ext/pb_assoc/detail/hash_fn/linear_probe_fn_imp.hpp: New.
565 * include/ext/pb_assoc/detail/hash_fn/
566 mask_based_range_hashing.hpp: New.
567 * include/ext/pb_assoc/detail/hash_fn/mod_based_range_hashing.hpp: New.
568 * include/ext/pb_assoc/detail/hash_fn/probe_fn_base.hpp: New.
569 * include/ext/pb_assoc/detail/hash_fn/quadratic_probe_fn_imp.hpp: New.
570 * include/ext/pb_assoc/detail/hash_fn/ranged_hash_fn.hpp: New.
571 * include/ext/pb_assoc/detail/hash_fn/ranged_probe_fn.hpp: New.
572 * include/ext/pb_assoc/detail/lu_assoc_cntnr/
573 constructor_destructor_fn_imps.hpp: New.
574 * include/ext/pb_assoc/detail/lu_assoc_cntnr/
575 policy_access_fn_imps.hpp: New.
576 * include/ext/pb_assoc/detail/lu_map_/
577 constructor_destructor_fn_imps.hpp: New.
578 * include/ext/pb_assoc/detail/lu_map_/debug_fn_imps.hpp: New.
579 * include/ext/pb_assoc/detail/lu_map_/erase_fn_imps.hpp: New.
580 * include/ext/pb_assoc/detail/lu_map_/find_fn_imps.hpp: New.
581 * include/ext/pb_assoc/detail/lu_map_/info_fn_imps.hpp: New.
582 * include/ext/pb_assoc/detail/lu_map_/insert_fn_imps.hpp: New.
583 * include/ext/pb_assoc/detail/lu_map_/iterators_fn_imps.hpp: New.
584 * include/ext/pb_assoc/detail/lu_map_/lu_map_.hpp: New.
585 * include/ext/pb_assoc/detail/lu_map_/policy_access_fn_imps.hpp: New.
586 * include/ext/pb_assoc/detail/lu_policy/
587 counter_lu_metadata_imp.hpp: New.
588 * include/ext/pb_assoc/detail/lu_policy/counter_lu_policy_imp.hpp: New.
589 * include/ext/pb_assoc/detail/lu_policy/mtf_lu_policy_imp.hpp: New.
590 * include/ext/pb_assoc/detail/ov_tree_map_/cond_dtor.hpp: New.
591 * include/ext/pb_assoc/detail/ov_tree_map_/
592 constructors_destructor_fn_imps.hpp: New.
593 * include/ext/pb_assoc/detail/ov_tree_map_/debug_fn_imps.hpp: New.
594 * include/ext/pb_assoc/detail/ov_tree_map_/erase_fn_imps.hpp: New.
595 * include/ext/pb_assoc/detail/ov_tree_map_/find_fn_imps.hpp: New.
596 * include/ext/pb_assoc/detail/ov_tree_map_/info_fn_imps.hpp: New.
597 * include/ext/pb_assoc/detail/ov_tree_map_/insert_fn_imps.hpp: New.
598 * include/ext/pb_assoc/detail/ov_tree_map_/iterators_fn_imps.hpp: New.
599 * include/ext/pb_assoc/detail/ov_tree_map_/node_iterators.hpp: New.
600 * include/ext/pb_assoc/detail/ov_tree_map_/ov_tree_map_.hpp: New.
601 * include/ext/pb_assoc/detail/ov_tree_map_/split_join_fn_imps.hpp: New.
602 * include/ext/pb_assoc/detail/rb_tree_map_/
603 constructors_destructor_fn_imps.hpp: New.
604 * include/ext/pb_assoc/detail/rb_tree_map_/debug_fn_imps.hpp: New.
605 * include/ext/pb_assoc/detail/rb_tree_map_/erase_fn_imps.hpp: New.
606 * include/ext/pb_assoc/detail/rb_tree_map_/find_fn_imps.hpp: New.
607 * include/ext/pb_assoc/detail/rb_tree_map_/info_fn_imps.hpp: New.
608 * include/ext/pb_assoc/detail/rb_tree_map_/insert_fn_imps.hpp: New.
609 * include/ext/pb_assoc/detail/rb_tree_map_/node.hpp: New.
610 * include/ext/pb_assoc/detail/rb_tree_map_/rb_tree_.hpp: New.
611 * include/ext/pb_assoc/detail/rb_tree_map_/split_join_fn_imps.hpp: New.
612 * include/ext/pb_assoc/detail/resize_policy/
613 cc_hash_max_collision_resize_trigger_imp.hpp: New.
614 * include/ext/pb_assoc/detail/resize_policy/
615 hash_exponential_size_policy_imp.hpp: New.
616 * include/ext/pb_assoc/detail/resize_policy/
617 hash_load_check_resize_trigger_imp.hpp: New.
618 * include/ext/pb_assoc/detail/resize_policy/
619 hash_prime_size_policy_imp.hpp: New.
620 * include/ext/pb_assoc/detail/resize_policy/
621 hash_standard_resize_policy_imp.hpp: New.
622 * include/ext/pb_assoc/detail/resize_policy/
623 ht_prime_size_policy_imp.hpp: New.
624 * include/ext/pb_assoc/detail/resize_policy/size_base.hpp: New.
625 * include/ext/pb_assoc/detail/splay_tree_/
626 constructors_destructor_fn_imps.hpp: New.
627 * include/ext/pb_assoc/detail/splay_tree_/debug_fn_imps.hpp: New.
628 * include/ext/pb_assoc/detail/splay_tree_/erase_fn_imps.hpp: New.
629 * include/ext/pb_assoc/detail/splay_tree_/find_fn_imps.hpp: New.
630 * include/ext/pb_assoc/detail/splay_tree_/info_fn_imps.hpp: New.
631 * include/ext/pb_assoc/detail/splay_tree_/insert_fn_imps.hpp: New.
632 * include/ext/pb_assoc/detail/splay_tree_/node.hpp: New.
633 * include/ext/pb_assoc/detail/splay_tree_/splay_fn_imps.hpp: New.
634 * include/ext/pb_assoc/detail/splay_tree_/splay_tree_.hpp: New.
635 * include/ext/pb_assoc/detail/splay_tree_/split_join_fn_imps.hpp: New.
636 * include/ext/pb_assoc/detail/tree_assoc_cntnr/
637 constructor_destructor_fn_imps.hpp: New.
638 * include/ext/pb_assoc/detail/tree_policy/
639 null_node_updator_imp.hpp: New.
640 * include/ext/pb_assoc/detail/tree_policy/
641 order_statistics_imp.hpp: New.
642 * include/ext/pb_assoc/detail/typelist/typelist_append.hpp: New.
643 * include/ext/pb_assoc/detail/typelist/typelist_apply.hpp: New.
644 * include/ext/pb_assoc/detail/typelist/typelist_at_index.hpp: New.
645 * include/ext/pb_assoc/detail/typelist/typelist_contains.hpp: New.
646 * include/ext/pb_assoc/detail/typelist/typelist_filter.hpp: New.
647 * include/ext/pb_assoc/detail/typelist/typelist_transform.hpp: New.
648 * include/ext/pb_assoc/detail/typelist/
649 typelist_typelist_append.hpp: New.
650 * include/ext/pb_assoc/detail/unordered_iterator/
651 const_find_iterator.hpp: New.
652 * include/ext/pb_assoc/detail/unordered_iterator/
653 const_iterator.hpp: New.
654 * include/ext/pb_assoc/detail/unordered_iterator/
655 find_iterator.hpp: New.
656 * include/ext/pb_assoc/detail/unordered_iterator/iterator.hpp: New.
657 * include/ext/pb_assoc/detail/value_type_adapter/
658 constructor_destructor_and_related.hpp: New.
659 * include/ext/pb_assoc/detail/value_type_adapter/
660 erase_fn_imps.hpp: New.
661 * include/ext/pb_assoc/detail/value_type_adapter/
662 erase_if_pred.hpp: New.
663 * include/ext/pb_assoc/detail/value_type_adapter/find_fn_imps.hpp: New.
664 * include/ext/pb_assoc/detail/value_type_adapter/info_fn_imps.hpp: New.
665 * include/ext/pb_assoc/detail/value_type_adapter/
666 insert_fn_imps.hpp: New.
667 * include/ext/pb_assoc/detail/value_type_adapter/
668 invalidation_guarantee_selector.hpp: New.
669 * include/ext/pb_assoc/detail/value_type_adapter/
670 it_value_type_traits.hpp: New.
671 * include/ext/pb_assoc/detail/value_type_adapter/iterator.hpp: New.
672 * include/ext/pb_assoc/detail/value_type_adapter/
673 iterator_fn_imps.hpp: New.
674 * include/ext/pb_assoc/detail/value_type_adapter/ref_pair.hpp: New.
675 * include/ext/pb_assoc/detail/value_type_adapter/
676 value_type_adapter.hpp: New.
677 * include/ext/pb_assoc/detail/value_type_adapter/
678 value_type_traits.hpp: New.
679 * testsuite/Makefile.am (CLEANFILES): Add .o, .dat, .cc.
680 * testsuite/Makefile.in: Regenerate.
681 * testsuite/testsuite_common_types.h: New.
682 * testsuite/testsuite_visualization.h: New.
683 * testsuite/ext/pb_assoc/example/basic_map.cc: New.
684 * testsuite/ext/pb_assoc/example/basic_multimap.cc: New.
685 * testsuite/ext/pb_assoc/example/basic_set.cc: New.
686 * testsuite/ext/pb_assoc/example/ds_traits.cc: New.
687 * testsuite/ext/pb_assoc/example/erase_if.cc: New.
688 * testsuite/ext/pb_assoc/example/extract_key.cc: New.
689 * testsuite/ext/pb_assoc/example/hash_find_neg.cc: New.
690 * testsuite/ext/pb_assoc/example/hash_illegal_resize.cc: New.
691 * testsuite/ext/pb_assoc/example/hash_initial_size.cc: New.
692 * testsuite/ext/pb_assoc/example/hash_load_set_change.cc: New.
693 * testsuite/ext/pb_assoc/example/hash_mod.cc: New.
694 * testsuite/ext/pb_assoc/example/hash_resize.cc: New.
695 * testsuite/ext/pb_assoc/example/hash_resize_neg.cc: New.
696 * testsuite/ext/pb_assoc/example/hash_shift_mask.cc: New.
697 * testsuite/ext/pb_assoc/example/mapping_level.cc: New.
698 * testsuite/ext/pb_assoc/example/mapping_level_neg.cc: New.
699 * testsuite/ext/pb_assoc/example/ms_traits.cc: New.
700 * testsuite/ext/pb_assoc/example/ranged_hash.cc: New.
701 * testsuite/ext/pb_assoc/example/store_hash.cc: New.
702 * testsuite/ext/pb_assoc/example/tree_intervals.cc: New.
703 * testsuite/ext/pb_assoc/example/tree_join.cc: New.
704 * testsuite/ext/pb_assoc/example/tree_order_statistics.cc: New.
705 * testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc: New.
706 * testsuite/ext/pb_assoc/example/tree_split.cc: New.
707 * testsuite/performance/20_util/allocator/(insert.cc,
708 insert_insert.cc, list_sort_search.cc, map_mt_find.cc, map_thread.cc,
709 producer_consumer.cc): Recast to use typelists and move to...
710 * testsuite/performance/23_containers/find/map.cc: New.
711 * testsuite/performance/23_containers/index/map.cc: New.
712 * testsuite/performance/23_containers/insert/associative.cc: New.
713 * testsuite/performance/23_containers/insert/sequence.cc: New.
714 * testsuite/performance/23_containers/insert_erase/associative.cc: New.
715 * testsuite/performance/23_containers/producer_consumer/
716 (associative.cc, sequence.cc): New.
717 * testsuite/performance/23_containers/sort_search/list.cc: New.
718 * testsuite/performance/23_containers/container_benchmark.cc: Remove.
719 * testsuite/performance/23_containers/map_create_fill.cc: Move...
720 * testsuite/performance/23_containers/create/map.cc: ...here.
721 * testsuite/performance/23_containers/set_create_from_sorted.cc: Move.
722 * testsuite/performance/23_containers/create_from_sorted/set.cc: here.
723 * testsuite/performance/23_containers/list_create_fill_sort.cc: Move...
724 * testsuite/performance/23_containers/create_sort/list.cc: ...here.
725 * testsuite/performance/23_containers/set_insert_from_sorted.cc: Move.
726 * testsuite/performance/23_containers/insert_from_sorted/set.cc: here.
727
728 2005-06-23 Jakub Jelinek <jakub@redhat.com>
729
730 PR libstdc++/22109
731 * src/compatibility.cc (_GLIBCXX_SYMVER_COMPATIBILITY): Remove.
732 (istreambuf_iterator, basic_fstream, basic_ifstream, basic_ofstream,
733 _M_copy, _M_move, _M_assign, _M_disjunct, _M_check_length,
734 _M_set_length_and_sharable, ignore, eq): Define to XX suffixed
735 variants.
736 (ignore (streamsize)): Remove _W prefixed aliases.
737 (_GLIBCXX_3_4_SYMVER_SPECIAL, _GLIBCXX_3_4_5_SYMVER_SPECIAL,
738 _GLIBCXX_APPLY_SYMVER_SPECIAL): Remove.
739 (_GLIBCXX_3_4_SYMVER, _GLIBCXX_3_4_5_SYMVER): Add XXname argument.
740 Use #XXname instead of #name as the alias argument.
741 * config/abi/compatibility.h: Replace uses of
742 _GLIBCXX_APPLY_SYMVER_SPECIAL with _GLIBCXX_APPLY_SYMVER. Always
743 pass 2 arguments to the _GLIBCXX_APPLY_SYMVER macro.
744 * include/bits/char_traits.h (char_traits::eq): Revert 2005-06-15
745 change.
746 * acinclude.m4: Decrease glibcxx_min_gnu_ld_version back to 21400.
747 * configure: Rebuilt.
748
749 2005-06-19 Benjamin Kosnik <bkoz@redhat.com>
750
751 PR libstdc++/22111
752 * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Remove
753 GLIBCXX_TEST_ABI. Remove duplicate _GLIBCXX_ASM_SYMVER define.
754 Don't enable abi testing unless versioned.
755 * configure: Regenerate.
756 * testsuite/Makefile.am (check-abi): Remove conditional.
757 * testsuite/Makefile.in: Regenerate.
758 * testsuite/libstdc++-abi/abi.exp: Call build_support, then check
759 v3-symver before proceeding.
760 * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Set v3-symvers
761 if _GLIBCXX_SYMVER.
762
763 2005-06-17 Paolo Carlini <pcarlini@suse.de>
764
765 Port from libstdcxx_so_7-branch:
766 2005-01-12 Christopher Jefferson <chris@bubblescope.net>
767
768 * include/bits/stl_function.h (mem_fun_t, const_mem_fun_t,
769 mem_fun_ref_t, const_mem_fun_ref_t, mem_fun1_t, const_mem_fun1_t,
770 mem_fun1_ref_t, const_mem_fun1_ref_t): Remove overloads for void
771 return type, just an old HP/SGI workaround.
772 * testsuite/20_util/functional/binders.cc: Move to...
773 * testsuite/20_util/functional/binders/3113.cc: ...here.
774 * testsuite/20_util/functional/binders/1.cc: New.
775
776 2005-06-17 Jonathan Wakely <redi@gcc.gnu.org>
777
778 * docs/html/21_strings/gotw29a.txt: Update code to corrected version.
779
780 2005-06-17 Jakub Jelinek <jakub@redhat.com>
781 Benjamin Kosnik <bkoz@redhat.com>
782
783 * config/abi/alpha-linux-gnu/baseline_symbols.txt: Update.
784 * config/abi/hppa-linux-gnu/baseline_symbols.txt: Same.
785 * config/abi/mips-linux-gnu/baseline_symbols.txt: Same.
786 * config/abi/sparc-linux-gnu/baseline_symbols.txt: Same.
787
788 * config/abi/alpha-freebsd5/baseline_symbols.txt: Remove.
789 * config/abi/i386-freebsd4/baseline_symbols.txt: Same.
790 * config/abi/i386-freebsd5/baseline_symbols.txt: Same.
791 * config/abi/sparc-freebsd5/baseline_symbols.txt: Same.
792
793 * config/abi/arm-linux-gnu/baseline_symbols.txt: Remove.
794 * config/abi/m68k-linux-gnu/baseline_symbols.txt: Same.
795
796 2005-06-17 Jakub Jelinek <jakub@redhat.com>
797
798 * config/abi/ia64-linux-gnu/baseline_symbols.txt: Update.
799 * config/abi/s390x-linux-gnu/baseline_symbols.txt: Update.
800 * config/abi/s390-linux-gnu/baseline_symbols.txt: Update.
801 * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Update.
802 * config/abi/x86_64-linux-gnu/32/baseline_symbols.txt: Update.
803 * config/abi/powerpc-linux-gnu/baseline_symbols.txt: Update.
804 * config/abi/i486-linux-gnu/baseline_symbols.txt: Update.
805 * config/abi/i386-linux-gnu/baseline_symbols.txt: Update.
806 * config/abi/powerpc64-linux-gnu/baseline_symbols.txt: New file.
807 * config/abi/powerpc64-linux-gnu/32/baseline_symbols.txt: New file.
808
809 2005-06-16 Jakub Jelinek <jakub@redhat.com>
810
811 * src/compatibility.cc: Include bits/c++config.h first.
812 (_GLIBCXX_SYMVER_COMPATIBILITY): Define if _GLIBCXX_SYMVER
813 and PIC are both defined.
814 * include/bits/char_traits.h (char_traits::eq): Rename
815 only if _GLIBCXX_SYMVER_COMPATIBILITY is defined.
816
817 2005-06-16 Jakub Jelinek <jakub@redhat.com>
818
819 * acinclude.m4 ((GLIBCXX_ENABLE_SYMVERS): Rename _GLIBCXX_SIZE_T_IS_INT
820 to _GLIBCXX_SIZE_T_IS_UINT. Define _GLIBCXX_PTRDIFF_T_IS_INT.
821 * configure: Regenerate.
822 * config.h.in: Regenerate.
823 * src/compatibility.cc (istream:ignore(streamsize)): Use
824 _GLIBCXX_PTRDIFF_T_IS_INT instead of _GLIBCXX_SIZE_T_IS_INT.
825 * config/abi/compatibility.h: Rename _GLIBCXX_SIZE_T_IS_INT
826 to _GLIBCXX_SIZE_T_IS_UINT. Use _GLIBCXX_PTRDIFF_T_IS_INT
827 instead for symbols with streamsize arguments.
828
829 2005-06-16 Jakub Jelinek <jakub@redhat.com>
830
831 * config/linker-map.gnu: Also export
832 _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreE[il][il].
833
834 2005-06-15 Benjamin Kosnik <bkoz@redhat.com>
835
836 * configure.ac (libtool_VERSION): To 6:6:0.
837 * configure: Regenerate.
838 * config/linker-map.gnu: Edit.
839 * src/istream.cc: Move istream::ignore(streamsize) specializations...
840 * src/compatibility.cc: ...here. New.
841 * include/bits/char_traits.h (char_traits::eq): Rename when
842 appropriate.
843 * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Define _GLIBCXX_SIZE_T_IS_INT.
844 Bump glibcxx_min_gnu_ld_version to 21590.
845 * configure: Regenerate.
846 * acconfig.h: Remove _GLIBCXX_ASM_SYMVER.
847 * config.h.in: Regenerate.
848 * src/Makefile.am (sources): Add compatibility.cc.
849 * src/Makefile.in: Regenerate.
850 * include/Makefile.am (host_headers_noinst): Add compatibility.h.
851 * include/Makefile.in: Regenerate.
852 * testsuite/testsuite_abi.h (symbol): Add data members.
853 * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.5,
854 GLIBCXX_3.4.6. Remove deprecated versions. Do a better job
855 version checking.
856
857 2005-06-15 Paolo Carlini <pcarlini@suse.de>
858
859 * include/tr1/hashtable: Trivial formatting fixes.
860 * include/tr1/unordered_map: Likewise.
861 * include/tr1/unordered_set: Likewise.
862
863 2005-06-14 Tom Tromey <tromey@redhat.com>
864
865 PR libgcj/19877:
866 * configure, aclocal.m4: Rebuilt.
867 * Makefile.in, include/Makefile.in, libmath/Makefile.in,
868 libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
869 testsuite/Makefile.in: Likewise.
870
871 2005-06-08 Benjamin Kosnik <bkoz@redhat.com>
872
873 PR libstdc++/21955
874 * include/std/std_sstream.h (basic_stringbuf::showmanyc): Add.
875 Remove unnecessary this->_M_mode decoration.
876 * include/bits/fstream.tcc: Adjust line spacing.
877 * testsuite/27_io/basic_streambuf/in_avail/char/1.cc: New, test
878 base class behavior.
879 * testsuite/27_io/basic_streambuf/in_avail/wchar_t/1.cc: Same.
880 * testsuite/27_io/basic_stringbuf/in_avail/char/21955.cc: New.
881 * testsuite/27_io/basic_stringbuf/in_avail/char/1.cc: Match
882 filebuf behavior.
883 * testsuite/27_io/basic_stringbuf/in_avail/wchar_t/1.cc: Same.
884 * testsuite/27_io/basic_stringbuf/str/wchar_t/1.cc: Same.
885 * testsuite/27_io/basic_stringbuf/str/char/1.cc: Same.
886 * testsuite/27_io/basic_streambuf/in_avail/char/9701-3.cc: Move...
887 * testsuite/27_io/basic_filebuf/in_avail/char/9701-3.cc: ...here.
888
889 2005-06-07 Benjamin Kosnik <bkoz@redhat.com>
890
891 * acinclude.m4 (GLIBCXX_ENABLE_C99): Use C++ compiler for complex
892 tests.
893 * configure: Regenerated.
894
895 2005-06-07 Adrian Straetling <straetling@de.ibm.com>
896
897 * config/cpu/s390/atomicity.h: (__exchange_and_add,
898 __atomic_add): Use the builtins for atomic memory operations.
899
900 2005-06-06 Paolo Carlini <pcarlini@suse.de>
901
902 PR libstdc++/21770 (cont: __gnu_debug::string)
903 * include/debug/string: Use _Base typedefs for pointer, const_pointer,
904 reference, const_reference, size_type, difference_type.
905 * testsuite/21_strings/basic_string/2.cc: New.
906
907 2005-06-06 Paolo Carlini <pcarlini@suse.de>
908
909 PR libstdc++/21770 (cont: debug-mode)
910 * include/debug/deque: Use _Base typedefs for pointer, const_pointer,
911 reference, const_reference.
912 * include/debug/list: Likewise.
913 * include/debug/map.h: Likewise.
914 * include/debug/multimap.h: Likewise.
915 * include/debug/multiset.h: Likewise.
916 * include/debug/set.h: Likewise.
917 * include/debug/vector: Likewise.
918
919 2005-06-06 Paolo Carlini <pcarlini@suse.de>
920
921 Port from libstdcxx_so_7-branch:
922 2004-09-24 Paolo Carlini <pcarlini@suse.de>
923 Jonathan Wakely <redi@gcc.gnu.org>
924
925 * include/bits/stl_list.h (list::list(size_type, value_type,
926 const allocator_type&): Implement according to the letter of the
927 standard, i.e., don't use two overloads, not equivalent in case
928 of non default constructible T.
929 (list::resize(size_type, const value_type&)): Fix the signature:
930 according to the standard the second argument is by value; also,
931 don't use two overloads.
932 * include/bits/list.tcc (list::resize(size_type, const value_type&)):
933 Adjust consistently the signature.
934 * include/bits/stl_deque.h (deque::deque(size_type, value_type,
935 const allocator_type&)): Likewise.
936 (deque::resize(size_type, const value_type&)): Likewise.
937 * include/bits/stl_vector.h (vector::vector(size_type, value_type,
938 const allocator_type&)): Likewise.
939 (vector::resize(size_type, const value_type&)): Likewise.
940 * testsuite/testsuite_hooks.h: Add NonDefaultConstructible test type.
941 * testsuite/23_containers/deque/explicit_instantiation/2.cc: New.
942 * testsuite/23_containers/list/explicit_instantiation/2.cc: New.
943 * testsuite/23_containers/map/explicit_instantiation/2.cc: New.
944 * testsuite/23_containers/multimap/explicit_instantiation/2.cc: New.
945 * testsuite/23_containers/multiset/explicit_instantiation/2.cc: New.
946 * testsuite/23_containers/set/explicit_instantiation/2.cc: New.
947 * testsuite/23_containers/vector/explicit_instantiation/2.cc: New.
948
949 * include/bits/deque.tcc: Minor formatting fix.
950
951 2005-06-06 Peter Doerfler <doerfler@techinfo.rwth-aachen.de>
952
953 * include/bits/stl_function.h: ... and another one.
954
955 2005-06-06 Peter Doerfler <doerfler@techinfo.rwth-aachen.de>
956
957 * include/bits/stl_function.h: Fix typo in comment.
958
959 2005-06-05 Paolo Carlini <pcarlini@suse.de>
960
961 * acinclude.m4 ([GLIBCXX_ENABLE_C99]): Check clog, clogf, clogl
962 too for ac_c99_complex.
963 * configure: Regenerate.
964
965 2005-06-03 Paolo Carlini <pcarlini@suse.de>
966
967 PR libstdc++/21770
968 * include/bits/stl_deque.h: Add concept-check. In class _Deque_base
969 rebind _Alloc to _Tp_alloc_type, change _Deque_impl to inherit from
970 the latter and add _M_get_Tp_allocator() which returns it. Use
971 everywhere _M_get_Tp_allocator() instead of get_allocator().
972 * include/bits/deque.tcc: Likewise, use _M_get_Tp_allocator().
973 * include/bits/stl_list.h: Add concept-check. In class _List_base
974 rebind _Alloc to _Tp_alloc_type and add _M_get_Tp_allocator(), which
975 returns the allocator (of type _Node_alloc_type) converted to
976 _Tp_alloc_type. Use everywhere _M_get_Tp_allocator() instead of
977 get_allocator().
978 * include/bits/list.tcc: Likewise, use _M_get_Tp_allocator().
979 * include/bits/stl_vector.h: Add concept-check. In class _Vector_base
980 rebind _Alloc to _Tp_alloc_type, change _Vector_impl to inherit from
981 the latter and add _M_get_Tp_allocator() which returns it. Use
982 everywhere _M_get_Tp_allocator() instead of get_allocator().
983 * include/bits/vector.tcc: Likewise, use _M_get_Tp_allocator().
984 * include/bits/stl_map.h: Add concept-check. Rebind _Alloc to
985 _Pair_alloc_type and use it for _Rb_tree.
986 * include/bits/stl_multimap.h: Likewise.
987 * include/bits/stl_multiset.h: Add concept-check. Rebind _Alloc to
988 _Key_alloc_type and use it for _Rb_tree.
989 * include/bits/stl_set.h: Likewise.
990 * include/bits/basic_string.h: Rebind _Alloc to _CharT_alloc_type and
991 use it for the allocator typedefs.
992 * testsuite/21_strings/basic_string/1.cc: New.
993 * testsuite/23_containers/deque/explicit_instantiation.cc: Move to...
994 * testsuite/23_containers/deque/explicit_instantiation/1.cc: ... here.
995 * testsuite/23_containers/deque/explicit_instantiation/3.cc: New.
996 * testsuite/23_containers/list/explicit_instantiation.cc: Move to...
997 * testsuite/23_containers/list/explicit_instantiation/1.cc: ... here.
998 * testsuite/23_containers/list/explicit_instantiation/3.cc: New.
999 * testsuite/23_containers/map/explicit_instantiation.cc: Move to...
1000 * testsuite/23_containers/map/explicit_instantiation/1.cc: ... here.
1001 * testsuite/23_containers/map/explicit_instantiation/3.cc: New.
1002 * testsuite/23_containers/multimap/explicit_instantiation.cc: Move to...
1003 * testsuite/23_containers/multimap/explicit_instantiation/1.cc: .. here.
1004 * testsuite/23_containers/multimap/explicit_instantiation/3.cc: New.
1005 * testsuite/23_containers/multiset/explicit_instantiation.cc: Move to...
1006 * testsuite/23_containers/multiset/explicit_instantiation/1.cc: .. here.
1007 * testsuite/23_containers/multiset/explicit_instantiation/3.cc: New.
1008 * testsuite/23_containers/set/explicit_instantiation.cc: Move to...
1009 * testsuite/23_containers/set/explicit_instantiation/1.cc: .. here.
1010 * testsuite/23_containers/set/explicit_instantiation/3.cc: New.
1011 * testsuite/23_containers/vector/explicit_instantiation.cc: Move to...
1012 * testsuite/23_containers/vector/explicit_instantiation/1.cc: ... here.
1013 * testsuite/23_containers/vector/explicit_instantiation/3.cc: New.
1014
1015 2005-06-02 Nathan Sidwell <nathan@codesourcery.com>
1016
1017 PR c++/21280
1018 * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust expected errors.
1019 * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise.
1020
1021 2005-05-31 Paolo Carlini <pcarlini@suse.de>
1022
1023 PR libstdc++/20534 (contd)
1024 * include/debug/macros.h: Add _GLIBCXX_DEBUG_ABORT, using
1025 __gnu_debug::__fancy_abort.
1026 * src/debug.cc: Define the latter.
1027 * include/debug/debug.h: Use _GLIBCXX_DEBUG_ABORT instead of
1028 assert.
1029 * config/linker-map.gnu (__gnu_debug::__fancy_abort): Add.
1030
1031 2005-05-30 Paolo Carlini <pcarlini@suse.de>
1032
1033 * include/std/std_complex.h (log(const complex<_Tp>&)): When
1034 _GLIBCXX_USE_C99_COMPLEX, forward to __builtin_clog/clogf/clogl.
1035
1036 2005-05-28 Paolo Carlini <pcarlini@suse.de>
1037
1038 Revert:
1039 2005-05-18 Paolo Carlini <pcarlini@suse.de>
1040 Nathan Myers <ncm@cantrip.org>
1041
1042 PR libstdc++/19495
1043 * include/bits/basic_string.h (_Raw_bytes_alloc): Rebind to
1044 size_type instead of char and rename to _Raw_alloc.
1045 * include/bits/basic_string.tcc (_Rep::_M_destroy, _Rep::_S_create):
1046 Use the above.
1047 * src/bitmap_allocator.cc: Add instantiation for size_type.
1048 * src/mt_allocator.cc: Likewise.
1049 * src/pool_allocator.cc: Likewise.
1050 * include/ext/array_allocator.h: Tweak slightly, avoid assuming
1051 the existence of an _Array::begin() and size() members.
1052 * testsuite/ext/array_allocator/2.cc: Tweak to use an allocator
1053 of size_type, instead of char, thus avoiding problems with
1054 rebinds, not treated correctly by array_allocator.
1055
1056 2005-05-27 Paolo Carlini <pcarlini@suse.de>
1057
1058 * docs/html/abi.html: Mention 3.4.0 as the current baseline; add
1059 a notice about the configure options.
1060
1061 2005-05-27 Mark Mitchell <mark@codesourcery.com>
1062
1063 * docs/html/test.html: Mention PCH_CXXFLAGS.
1064 * testsuite/lib/libstdc++.exp: Set PCH_CXXFLAGS by probing for an
1065 available stcd++.h PCH.
1066 * testsuite/libstdc++-dg/normal.exp: Use PCH_CXXFLAGS.
1067
1068 2005-05-27 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
1069
1070 * src/misc-inst.cc: Remove unnecessary included files.
1071
1072 2005-05-27 Benjamin Kosnik <bkoz@redhat.com>
1073
1074 PR libstdc++/21674
1075 * include/bits/c++config: Remove extern template use when in debug
1076 mode, disable for non-weak systems.
1077
1078 2005-05-27 Benjamin Kosnik <bkoz@redhat.com>
1079
1080 PR libstdc++/20534
1081 * include/debug/debug.h: Forwarding header, that pulls in details
1082 only if in debug mode.
1083 * include/debug/macros.h: ...transfer all the internal macros here.
1084 * include/debug/functions.h: ...transfer all the functions here.
1085 * include/debug/safe_iterator.h: Add functions.h, macros.h includes.
1086 * include/debug/safe_sequence.h: Same.
1087 * include/debug/vector: Tweak.
1088 * include/Makefile.am (debug_headers): Add new includes.
1089 * include/Makefile.in: Regenerate.
1090 * testsuite/17_intro/no_assert_neg.cc: Add.
1091
1092 * include/ext/hash_set: Add debug mode include.
1093 * include/ext/hash_map: Same.
1094 * include/debug/hash_map: Fix included files to match actual files.
1095 * include/debug/hash_set: Same.
1096
1097 2005-05-26 Paolo Carlini <pcarlini@suse.de>
1098
1099 PR libstdc++/13943
1100 * include/c_std/std_cstdlib.h: Do not open code llabs and lldiv,
1101 available when _GLIBCXX_USE_C99 is defined.
1102 * testsuite/26_numerics/cstdlib/13943.cc: New.
1103
1104 * acinclude.m4 ([GLIBCXX_ENABLE_C99]): For completeness, check
1105 also strtoll and strtoull for ac_c99_stdlib.
1106 * configure: Regenerate.
1107
1108 2005-05-25 Benjamin Kosnik <bkoz@redhat.com>
1109
1110 * config/linker-map.gnu: Add linkage support for no extern templates.
1111 (std::ios_base::_M_call_callbacks): Add.
1112 (std::ios_base::_M_dispose_callbacks): Add.
1113 (std::locale::facet::_S_get_c_name): Add.
1114 (std::__copy_streambufs): Add.
1115 * configure.ac (libtool_VERSION): To 6:5:0.
1116 * configure: Regenerate.
1117 * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.5.
1118
1119 2005-05-25 Paolo Carlini <pcarlini@suse.de>
1120
1121 * include/bits/basic_string.h (_Rep::_M_set_length_and_sharable):
1122 Use, consistently, traits_type::assign.
1123
1124 2005-05-25 Paolo Carlini <pcarlini@suse.de>
1125
1126 * config/cpu/alpha/atomicity.h: Use the builtins for
1127 atomic memory operations.
1128 * config/cpu/powerpc/atomicity.h: Likewise.
1129 * config/cpu/ia64/atomicity.h: Do not include ia64intrin.h.
1130
1131 2005-05-24 Paolo Carlini <pcarlini@suse.de>
1132
1133 * testsuite/25_algorithms/equal.cc: Move to...
1134 * testsuite/25_algorithms/equal: ... here.
1135 * testsuite/25_algorithms/lower_bound.cc: Move to...
1136 * testsuite/25_algorithms/lower_bound: ... here.
1137
1138 2005-05-24 Paolo Carlini <pcarlini@suse.de>
1139
1140 Port from libstdcxx_so_7-branch:
1141 2005-20-05 Chris Jefferson <chris@bubblescope.net>
1142
1143 * testsuite/25_algorithms/heap.cc: Move to...
1144 * testsuite/25_algorithms/heap/heap.cc: ...here.
1145 * testsuite/25_algorithms/partition.cc: Move to...
1146 * testsuite/25_algorithms/partition/partition.cc: ...here.
1147
1148 2005-03-29 Christopher Jefferson <chris@bubblescope.net>
1149
1150 * testsuite/25_algorithms/includes/1.cc: Add tests.
1151 * testsuite/25_algorithms/search/1.cc: Likewise.
1152 * testsuite/25_algorithms/unique_copy/1.cc: Likewise.
1153 * testsuite/25_algorithms/swap_ranges/1.cc: New.
1154 * testsuite/25_algorithms/swap_ranges/check_type.cc: New.
1155 * testsuite/25_algorithms/rotate.cc: Move to...
1156 * testsuite/25_algorithms/rotate/rotate.cc: ... here.
1157 * testsuite/25_algorithms/rotate/1.cc: New.
1158 * testsuite/25_algorithms/rotate/check_type.cc: New.
1159 * testsuite/25_algorithms/search_n/iterator.cc: Fix typo.
1160
1161 2005-03-14 Christopher Jefferson <chris@bubblescope.net>
1162
1163 * include/bits/stl_algo.h (replace_copy, replace_copy_if):
1164 Don't assume that __new_value and *__first are convertible to
1165 each other.
1166
1167 * testsuite/25_algorithms/find/1.cc: New.
1168 * testsuite/25_algorithms/find/check_type.cc: New.
1169 * testsuite/25_algorithms/find_if/1.cc: New.
1170 * testsuite/25_algorithms/find_if/check_type.cc: New.
1171 * testsuite/25_algorithms/replace/1.cc: New.
1172 * testsuite/25_algorithms/replace/check_type.cc: New.
1173 * testsuite/25_algorithms/replace_if/1.cc: New.
1174 * testsuite/25_algorithms/replace_if/check_type.cc: New.
1175 * testsuite/25_algorithms/replace_copy/1.cc: New.
1176 * testsuite/25_algorithms/replace_copy/check_type.cc: New.
1177 * testsuite/25_algorithms/replace_copy_if/1.cc: New.
1178 * testsuite/25_algorithms/replace_copy_if/check_type.cc: New.
1179 * testsuite/25_algorithms/remove/1.cc: New.
1180 * testsuite/25_algorithms/remove/check_type.cc: New.
1181 * testsuite/25_algorithms/remove_if/1.cc: New.
1182 * testsuite/25_algorithms/remove_if/check_type.cc: New.
1183 * testsuite/25_algorithms/count/1.cc: New.
1184 * testsuite/25_algorithms/count/check_type.cc: New.
1185 * testsuite/25_algorithms/count_if/1.cc: New.
1186 * testsuite/25_algorithms/count_if/check_type.cc: New.
1187
1188 2005-02-27 Christopher Jefferson <chris@bubblescope.net>
1189 Paolo Carlini <pcarlini@suse.de>
1190
1191 * testsuite/ext/is_heap/check_type.cc: New.
1192
1193 2005-02-27 Paolo Carlini <pcarlini@suse.de>
1194
1195 * testsuite/ext/is_heap/1.cc: New.
1196
1197 2005-02-01 Christopher Jefferson <chris@bubblescope.net>
1198
1199 * testsuite/ext/median.cc: New.
1200 * testsuite/25_algorithms/adjacent_find/1.cc: New.
1201 * testsuite/25_algorithms/adjacent_find/check_type.cc: New.
1202 * testsuite/25_algorithms/search/1.cc: New.
1203 * testsuite/25_algorithms/search/check_type.cc: New.
1204 * testsuite/25_algorithms/unique_copy/1.cc: New.
1205 * testsuite/25_algorithms/unique_copy/check_type.cc: New.
1206 * testsuite/25_algorithms/partial_sort/1.cc: New.
1207 * testsuite/25_algorithms/partial_sort/check_type.cc: New.
1208 * testsuite/25_algorithms/partial_sort_copy/1.cc: New.
1209 * testsuite/25_algorithms/partial_sort_copy/check_type.cc: New.
1210 * testsuite/25_algorithms/lower_bound/1.cc: New.
1211 * testsuite/25_algorithms/lower_bound/check_type.cc: New.
1212 * testsuite/25_algorithms/upper_bound/1.cc: New.
1213 * testsuite/25_algorithms/upper_bound/check_type.cc: New.
1214 * testsuite/25_algorithms/merge/1.cc: New.
1215 * testsuite/25_algorithms/merge/check_type.cc: New.
1216 * testsuite/25_algorithms/inplace_merge/1.cc: New.
1217 * testsuite/25_algorithms/inplace_merge/check_type.cc: New.
1218 * testsuite/25_algorithms/stable_sort/1.cc: New.
1219 * testsuite/25_algorithms/stable_sort/check_type.cc: New.
1220 * testsuite/25_algorithms/nth_element/1.cc: New.
1221 * testsuite/25_algorithms/nth_element/check_type.cc: New.
1222 * testsuite/25_algorithms/equal_range/1.cc: New.
1223 * testsuite/25_algorithms/equal_range/check_type.cc: New.
1224 * testsuite/25_algorithms/binary_search/1.cc: New.
1225 * testsuite/25_algorithms/binary_search/check_type.cc: New.
1226 * testsuite/25_algorithms/includes/1.cc: New.
1227 * testsuite/25_algorithms/includes/check_type.cc: New.
1228 * testsuite/25_algorithms/set_union/1.cc: New.
1229 * testsuite/25_algorithms/set_union/check_type.cc: New.
1230 * testsuite/25_algorithms/set_intersection/1.cc: New.
1231 * testsuite/25_algorithms/set_intersection/check_type.cc: New.
1232 * testsuite/25_algorithms/set_difference/1.cc: New.
1233 * testsuite/25_algorithms/set_difference/check_type.cc: New.
1234 * testsuite/25_algorithms/set_symmetric_difference/1.cc: New.
1235 * testsuite/25_algorithms/set_symmetric_difference/check_type.cc: New.
1236 * testsuite/25_algorithms/min_element/1.cc: New.
1237 * testsuite/25_algorithms/min_element/check_type.cc: New.
1238 * testsuite/25_algorithms/max_element/1.cc: New.
1239 * testsuite/25_algorithms/max_element/check_type.cc: New.
1240 * testsuite/25_algorithms/prev_permutation/1.cc: New.
1241 * testsuite/25_algorithms/prev_permutation/check_type.cc: New.
1242 * testsuite/25_algorithms/next_permutation/1.cc: New.
1243 * testsuite/25_algorithms/next_permutation/check_type.cc: New.
1244 * testsuite/25_algorithms/find_first_of/1.cc: New.
1245 * testsuite/25_algorithms/find_first_of/check_type.cc: New.
1246 * testsuite/25_algorithms/find_end/1.cc: New.
1247 * testsuite/25_algorithms/find_end/check_type.cc: New.
1248 * testsuite/25_algorithms/equal/check_type.cc: Insert iterator type.
1249 * testsuite/25_algorithms/lexicographical_compare/check_type.cc:
1250 Likewise.
1251
1252 2005-01-10 Christopher Jefferson <chris@bubblescope.net>
1253
1254 * testsuite/25_algorithms/lexicographical_compare/check_type.cc: New.
1255 * testsuite/25_algorithms/lexicographical_compare/1.cc: Likewise.
1256 * testsuite/25_algorithms/mismatch/check_type.cc: Likewise.
1257 * testsuite/25_algorithms/mismatch/1.cc: Likewise.
1258 * testsuite/25_algorithms/equal/check_type.cc: New.
1259 * testsuite/25_algorithms/equal/1.cc: New.
1260
1261 2005-05-24 Benjamin Kosnik <bkoz@redhat.com>
1262
1263 * include/bits/allocator.h: Change ___glibcxx_base_allocator to
1264 __glibcxx_base_allocator.
1265 * config/allocator/bitmap_allocator_base.h: Same.
1266 * config/allocator/malloc_allocator_base.h: Same.
1267 * config/allocator/mt_allocator_base.h: Same.
1268 * config/allocator/new_allocator_base.h: Same.
1269 * config/allocator/pool_allocator_base.h: Same.
1270
1271 2005-05-24 Jonathan Wakely <redi@gcc.gnu.org>
1272
1273 * include/debug/string (class basic_string): Add missing
1274 default template arguments; provide typedefs for char
1275 and wchar_t.
1276 (operator[]): Allow s[s.size()] in debug mode, but not
1277 pedantic mode.
1278
1279 2005-05-24 Paolo Carlini <pcarlini@suse.de>
1280
1281 Port from libstdcxx_so_7-branch:
1282 2005-04-25 Christopher Jefferson <chris@bubblescope.net>
1283
1284 * include/bits/stl_algo.h (count): Correct concept checks.
1285 (search_n) : Likewise.
1286 * testsuite/25_algorithms/search_n/check_type.cc: New.
1287
1288 * testsuite/testsuite_iterators.h
1289 (random_access_iterator_wrapper::operator+): Move out of
1290 class to external function, and add symmetric version.
1291
1292 2005-03-14 Christopher Jefferson <chris@bubblescope.net>
1293
1294 * testsuite/testsuite_iterators.h (WritableObject::WritableObject):
1295 Add const.
1296
1297 2005-02-01 Christopher Jefferson <chris@bubblescope.net>
1298
1299 * testsuite/testsuite_iterators.h (random_access_iterator_wrapper::
1300 operator--): Fix typo.
1301 (OutputContainer::OutputContainer): Correct zeroing array.
1302 (WritableObject::operator==): Fix typo.
1303 (WritableObject::operator=): make operator= templated
1304 to allow differing types to be assigned.
1305 (WritableObject::operator++): Fix checking if iterator is
1306 written to multiple times.
1307 (random_access_iterator_wrapper::operator+): Add const.
1308 (random_access_iterator_wrapper::operator-): Likewise.
1309 (random_access_iterator_wrapper::operator[]): Add dereference.
1310
1311 2005-05-23 Jonathan Wakely <redi@gcc.gnu.org>
1312
1313 * docs/html/debug.html: Explain that _GLIBXX_DEBUG_PEDANTIC
1314 had to be defined for pedantic mode in 3.4 and 4.0.0.
1315
1316 2005-05-20 Jan Beulich <jbeulich@novell.com>
1317
1318 * libmath/stubs.c: Also implement fabsf/fabsl if not present in the
1319 system libraries.
1320
1321 2005-05-20 Paolo Carlini <pcarlini@suse.de>
1322
1323 * include/bits/stl_algo.h (__rotate<_RandomAccessIterator>):
1324 Don't qualify __tmp as const, _ValueType is not necessarily
1325 Assignable.
1326 * include/bits/stl_algobase.h (swap, __iter_swap<false>):
1327 Likewise, as an harmless extension.
1328
1329 2005-05-19 Richard Henderson <rth@redhat.com>
1330
1331 * libsupc++/unwind-cxx.h: Revert gcc_unreachable change.
1332
1333 2005-05-19 Jonathan Wakely <redi@gcc.gnu.org>
1334
1335 * include/bits/basic_string.h (operator[]): Allow s[s.size()] in
1336 debug mode, but not pedantic mode.
1337
1338 2005-05-19 Jan Beulich <jbeulich@novell.com>
1339
1340 * libsupc++/unwind-cxx.h: Include cstdlib.
1341 (gcc_unreachable): #define.
1342 * libsupc++/eh_personality.cc (gcc_unreachable): Remove #define.
1343
1344 2005-05-18 Paolo Carlini <pcarlini@suse.de>
1345 Nathan Myers <ncm@cantrip.org>
1346
1347 PR libstdc++/19495
1348 * include/bits/basic_string.h (_Raw_bytes_alloc): Rebind to
1349 size_type instead of char and rename to _Raw_alloc.
1350 * include/bits/basic_string.tcc (_Rep::_M_destroy, _Rep::_S_create):
1351 Use the above.
1352 * src/bitmap_allocator.cc: Add instantiation for size_type.
1353 * src/mt_allocator.cc: Likewise.
1354 * src/pool_allocator.cc: Likewise.
1355 * include/ext/array_allocator.h: Tweak slightly, avoid assuming
1356 the existence of an _Array::begin() and size() members.
1357 * testsuite/ext/array_allocator/2.cc: Tweak to use an allocator
1358 of size_type, instead of char, thus avoiding problems with
1359 rebinds, not treated correctly by array_allocator.
1360
1361 2005-05-18 Paolo Carlini <pcarlini@suse.de>
1362
1363 * testsuite/22_locale/ctype/is/char/2.cc: Adjust dg-require-namedlocale.
1364 * testsuite/22_locale/ctype/is/wchar_t/2.cc: Likewise.
1365 * testsuite/22_locale/time_get/get_year/char/wrapped_env.cc: Add
1366 missing dg-require-namedlocale.
1367 * testsuite/22_locale/time_get/get_year/char/wrapped_locale.cc:
1368 Likewise.
1369 * testsuite/22_locale/time_get/get_year/wchar_t/wrapped_env.cc:
1370 Likewise.
1371 * testsuite/22_locale/time_get/get_year/wchar_t/wrapped_locale.cc:
1372 Likewise.
1373
1374 2005-05-18 Paolo Carlini <pcarlini@suse.de>
1375
1376 * testsuite/testsuite_hooks.cc: Remove try_named_locale.
1377 * testsuite/testsuite_hooks.h: Remove try_named_locale.
1378 * testsuite/lib/libstdc++.exp (check_v3_target_namedlocale): New.
1379 * testsuite/lib/dg-options.exp (dg-require-namedlocale): New, uses
1380 the above.
1381 * testsuite/22_locale/codecvt/always_noconv/char/wrapped_env.cc: Use
1382 dg-require-namedlocale.
1383 * testsuite/22_locale/codecvt/always_noconv/char/wrapped_locale.cc:
1384 Likewise.
1385 * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Likewise.
1386 * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Likewise.
1387 * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Likewise.
1388 * testsuite/22_locale/codecvt/always_noconv/wchar_t/wrapped_env.cc:
1389 Likewise.
1390 * testsuite/22_locale/codecvt/always_noconv/wchar_t/wrapped_locale.cc:
1391 Likewise.
1392 * testsuite/22_locale/codecvt/encoding/char/wrapped_env.cc: Likewise.
1393 * testsuite/22_locale/codecvt/encoding/char/wrapped_locale.cc: Likewise.
1394 * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc: Likewise.
1395 * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc: Likewise.
1396 * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc: Likewise.
1397 * testsuite/22_locale/codecvt/encoding/wchar_t/wrapped_env.cc: Likewise.
1398 * testsuite/22_locale/codecvt/encoding/wchar_t/wrapped_locale.cc:
1399 Likewise.
1400 * testsuite/22_locale/codecvt/in/char/wrapped_env.cc: Likewise.
1401 * testsuite/22_locale/codecvt/in/char/wrapped_locale.cc: Likewise.
1402 * testsuite/22_locale/codecvt/in/wchar_t/2.cc: Likewise.
1403 * testsuite/22_locale/codecvt/in/wchar_t/3.cc: Likewise.
1404 * testsuite/22_locale/codecvt/in/wchar_t/4.cc: Likewise.
1405 * testsuite/22_locale/codecvt/in/wchar_t/7.cc: Likewise.
1406 * testsuite/22_locale/codecvt/in/wchar_t/8.cc: Likewise.
1407 * testsuite/22_locale/codecvt/in/wchar_t/9.cc: Likewise.
1408 * testsuite/22_locale/codecvt/in/wchar_t/wrapped_env.cc: Likewise.
1409 * testsuite/22_locale/codecvt/in/wchar_t/wrapped_locale.cc: Likewise.
1410 * testsuite/22_locale/codecvt/length/char/wrapped_env.cc: Likewise.
1411 * testsuite/22_locale/codecvt/length/char/wrapped_locale.cc: Likewise.
1412 * testsuite/22_locale/codecvt/length/wchar_t/2.cc: Likewise.
1413 * testsuite/22_locale/codecvt/length/wchar_t/3.cc: Likewise.
1414 * testsuite/22_locale/codecvt/length/wchar_t/4.cc: Likewise.
1415 * testsuite/22_locale/codecvt/length/wchar_t/7.cc: Likewise.
1416 * testsuite/22_locale/codecvt/length/wchar_t/wrapped_env.cc: Likewise.
1417 * testsuite/22_locale/codecvt/length/wchar_t/wrapped_locale.cc:
1418 Likewise.
1419 * testsuite/22_locale/codecvt/max_length/char/wrapped_env.cc: Likewise.
1420 * testsuite/22_locale/codecvt/max_length/char/wrapped_locale.cc:
1421 Likewise.
1422 * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Likewise.
1423 * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Likewise.
1424 * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Likewise.
1425 * testsuite/22_locale/codecvt/max_length/wchar_t/wrapped_env.cc:
1426 Likewise.
1427 * testsuite/22_locale/codecvt/max_length/wchar_t/wrapped_locale.cc:
1428 Likewise.
1429 * testsuite/22_locale/codecvt/out/char/wrapped_env.cc: Likewise.
1430 * testsuite/22_locale/codecvt/out/char/wrapped_locale.cc: Likewise.
1431 * testsuite/22_locale/codecvt/out/wchar_t/2.cc: Likewise.
1432 * testsuite/22_locale/codecvt/out/wchar_t/3.cc: Likewise.
1433 * testsuite/22_locale/codecvt/out/wchar_t/4.cc: Likewise.
1434 * testsuite/22_locale/codecvt/out/wchar_t/7.cc: Likewise.
1435 * testsuite/22_locale/codecvt/out/wchar_t/wrapped_env.cc: Likewise.
1436 * testsuite/22_locale/codecvt/out/wchar_t/wrapped_locale.cc: Likewise.
1437 * testsuite/22_locale/codecvt/unshift/char/wrapped_env.cc: Likewise.
1438 * testsuite/22_locale/codecvt/unshift/char/wrapped_locale.cc: Likewise.
1439 * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc: Likewise.
1440 * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc: Likewise.
1441 * testsuite/22_locale/codecvt/unshift/wchar_t/4.cc: Likewise.
1442 * testsuite/22_locale/codecvt/unshift/wchar_t/wrapped_env.cc: Likewise.
1443 * testsuite/22_locale/codecvt/unshift/wchar_t/wrapped_locale.cc:
1444 Likewise.
1445 * testsuite/22_locale/collate/compare/char/1.cc: Likewise.
1446 * testsuite/22_locale/collate/compare/char/2.cc: Likewise.
1447 * testsuite/22_locale/collate/compare/char/3.cc: Likewise.
1448 * testsuite/22_locale/collate/compare/char/wrapped_env.cc: Likewise.
1449 * testsuite/22_locale/collate/compare/char/wrapped_locale.cc: Likewise.
1450 * testsuite/22_locale/collate/compare/wchar_t/1.cc: Likewise.
1451 * testsuite/22_locale/collate/compare/wchar_t/2.cc: Likewise.
1452 * testsuite/22_locale/collate/compare/wchar_t/3.cc: Likewise.
1453 * testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc: Likewise.
1454 * testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc:
1455 Likewise.
1456 * testsuite/22_locale/collate/hash/char/2.cc: Likewise.
1457 * testsuite/22_locale/collate/hash/char/wrapped_env.cc: Likewise.
1458 * testsuite/22_locale/collate/hash/char/wrapped_locale.cc: Likewise.
1459 * testsuite/22_locale/collate/hash/wchar_t/2.cc: Likewise.
1460 * testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc: Likewise.
1461 * testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc: Likewise.
1462 * testsuite/22_locale/collate/transform/char/2.cc: Likewise.
1463 * testsuite/22_locale/collate/transform/char/3.cc: Likewise.
1464 * testsuite/22_locale/collate/transform/char/wrapped_env.cc: Likewise.
1465 * testsuite/22_locale/collate/transform/char/wrapped_locale.cc:
1466 Likewise.
1467 * testsuite/22_locale/collate/transform/wchar_t/2.cc: Likewise.
1468 * testsuite/22_locale/collate/transform/wchar_t/3.cc: Likewise.
1469 * testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc:
1470 Likewise.
1471 * testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:
1472 Likewise.
1473 * testsuite/22_locale/collate_byname/named_equivalence.cc: Likewise.
1474 * testsuite/22_locale/ctype/cons/char/wrapped_env.cc: Likewise.
1475 * testsuite/22_locale/ctype/cons/char/wrapped_locale.cc: Likewise.
1476 * testsuite/22_locale/ctype/is/char/2.cc: Likewise.
1477 * testsuite/22_locale/ctype/is/char/wrapped_env.cc: Likewise.
1478 * testsuite/22_locale/ctype/is/char/wrapped_locale.cc: Likewise.
1479 * testsuite/22_locale/ctype/is/wchar_t/2.cc: Likewise.
1480 * testsuite/22_locale/ctype/is/wchar_t/wrapped_env.cc: Likewise.
1481 * testsuite/22_locale/ctype/is/wchar_t/wrapped_locale.cc: Likewise.
1482 * testsuite/22_locale/ctype/narrow/char/wrapped_env.cc: Likewise.
1483 * testsuite/22_locale/ctype/narrow/char/wrapped_locale.cc: Likewise.
1484 * testsuite/22_locale/ctype/narrow/wchar_t/3.cc: Likewise.
1485 * testsuite/22_locale/ctype/narrow/wchar_t/wrapped_env.cc: Likewise.
1486 * testsuite/22_locale/ctype/narrow/wchar_t/wrapped_locale.cc: Likewise.
1487 * testsuite/22_locale/ctype/scan/char/wrapped_env.cc: Likewise.
1488 * testsuite/22_locale/ctype/scan/char/wrapped_locale.cc: Likewise.
1489 * testsuite/22_locale/ctype/scan/wchar_t/wrapped_env.cc: Likewise.
1490 * testsuite/22_locale/ctype/scan/wchar_t/wrapped_locale.cc: Likewise.
1491 * testsuite/22_locale/ctype/to/char/wrapped_env.cc: Likewise.
1492 * testsuite/22_locale/ctype/to/char/wrapped_locale.cc: Likewise.
1493 * testsuite/22_locale/ctype/to/wchar_t/wrapped_env.cc: Likewise.
1494 * testsuite/22_locale/ctype/to/wchar_t/wrapped_locale.cc: Likewise.
1495 * testsuite/22_locale/ctype/widen/char/wrapped_env.cc: Likewise.
1496 * testsuite/22_locale/ctype/widen/char/wrapped_locale.cc: Likewise.
1497 * testsuite/22_locale/ctype/widen/wchar_t/2.cc: Likewise.
1498 * testsuite/22_locale/ctype/widen/wchar_t/3.cc: Likewise.
1499 * testsuite/22_locale/ctype/widen/wchar_t/wrapped_env.cc: Likewise.
1500 * testsuite/22_locale/ctype/widen/wchar_t/wrapped_locale.cc: Likewise.
1501 * testsuite/22_locale/facet/2.cc: Likewise.
1502 * testsuite/22_locale/locale/cons/12352.cc: Likewise.
1503 * testsuite/22_locale/locale/cons/12438.cc: Likewise.
1504 * testsuite/22_locale/locale/cons/12658_thread-1.cc: Likewise.
1505 * testsuite/22_locale/locale/cons/12658_thread-2.cc: Likewise.
1506 * testsuite/22_locale/locale/cons/2.cc: Likewise.
1507 * testsuite/22_locale/locale/cons/4.cc: Likewise.
1508 * testsuite/22_locale/locale/cons/5.cc: Likewise.
1509 * testsuite/22_locale/locale/cons/7.cc: Likewise.
1510 * testsuite/22_locale/locale/cons/7222-env.cc: Likewise.
1511 * testsuite/22_locale/locale/global_locale_objects/14071.cc: Likewise.
1512 * testsuite/22_locale/locale/global_locale_objects/2.cc: Likewise.
1513 * testsuite/22_locale/messages/members/char/1.cc: Likewise.
1514 * testsuite/22_locale/messages/members/char/2.cc: Likewise.
1515 * testsuite/22_locale/messages/members/char/3.cc: Likewise.
1516 * testsuite/22_locale/messages/members/char/wrapped_env.cc: Likewise.
1517 * testsuite/22_locale/messages/members/char/wrapped_locale.cc: Likewise.
1518 * testsuite/22_locale/messages_byname/named_equivalence.cc: Likewise.
1519 * testsuite/22_locale/money_get/get/char/1.cc: Likewise.
1520 * testsuite/22_locale/money_get/get/char/10.cc: Likewise.
1521 * testsuite/22_locale/money_get/get/char/11.cc: Likewise.
1522 * testsuite/22_locale/money_get/get/char/11528.cc: Likewise.
1523 * testsuite/22_locale/money_get/get/char/12.cc: Likewise.
1524 * testsuite/22_locale/money_get/get/char/13.cc: Likewise.
1525 * testsuite/22_locale/money_get/get/char/15.cc: Likewise.
1526 * testsuite/22_locale/money_get/get/char/16.cc: Likewise.
1527 * testsuite/22_locale/money_get/get/char/17.cc: Likewise.
1528 * testsuite/22_locale/money_get/get/char/18.cc: Likewise.
1529 * testsuite/22_locale/money_get/get/char/2.cc: Likewise.
1530 * testsuite/22_locale/money_get/get/char/3.cc: Likewise.
1531 * testsuite/22_locale/money_get/get/char/4.cc: Likewise.
1532 * testsuite/22_locale/money_get/get/char/wrapped_env.cc: Likewise.
1533 * testsuite/22_locale/money_get/get/char/wrapped_locale.cc: Likewise.
1534 * testsuite/22_locale/money_get/get/wchar_t/1.cc: Likewise.
1535 * testsuite/22_locale/money_get/get/wchar_t/10.cc: Likewise.
1536 * testsuite/22_locale/money_get/get/wchar_t/11.cc: Likewise.
1537 * testsuite/22_locale/money_get/get/wchar_t/11528.cc: Likewise.
1538 * testsuite/22_locale/money_get/get/wchar_t/12.cc: Likewise.
1539 * testsuite/22_locale/money_get/get/wchar_t/13.cc: Likewise.
1540 * testsuite/22_locale/money_get/get/wchar_t/15.cc: Likewise.
1541 * testsuite/22_locale/money_get/get/wchar_t/16.cc: Likewise.
1542 * testsuite/22_locale/money_get/get/wchar_t/17.cc: Likewise.
1543 * testsuite/22_locale/money_get/get/wchar_t/18.cc: Likewise.
1544 * testsuite/22_locale/money_get/get/wchar_t/2.cc: Likewise.
1545 * testsuite/22_locale/money_get/get/wchar_t/3.cc: Likewise.
1546 * testsuite/22_locale/money_get/get/wchar_t/4.cc: Likewise.
1547 * testsuite/22_locale/money_get/get/wchar_t/wrapped_env.cc: Likewise.
1548 * testsuite/22_locale/money_get/get/wchar_t/wrapped_locale.cc: Likewise.
1549 * testsuite/22_locale/money_put/put/char/1.cc: Likewise.
1550 * testsuite/22_locale/money_put/put/char/2.cc: Likewise.
1551 * testsuite/22_locale/money_put/put/char/3.cc: Likewise.
1552 * testsuite/22_locale/money_put/put/char/9780-3.cc: Likewise.
1553 * testsuite/22_locale/money_put/put/char/wrapped_env.cc: Likewise.
1554 * testsuite/22_locale/money_put/put/char/wrapped_locale.cc: Likewise.
1555 * testsuite/22_locale/money_put/put/wchar_t/1.cc: Likewise.
1556 * testsuite/22_locale/money_put/put/wchar_t/2.cc: Likewise.
1557 * testsuite/22_locale/money_put/put/wchar_t/3.cc: Likewise.
1558 * testsuite/22_locale/money_put/put/wchar_t/wrapped_env.cc: Likewise.
1559 * testsuite/22_locale/money_put/put/wchar_t/wrapped_locale.cc: Likewise.
1560 * testsuite/22_locale/moneypunct/members/char/2.cc: Likewise.
1561 * testsuite/22_locale/moneypunct/members/char/wrapped_env.cc: Likewise.
1562 * testsuite/22_locale/moneypunct/members/char/wrapped_locale.cc:
1563 Likewise.
1564 * testsuite/22_locale/moneypunct/members/wchar_t/2.cc: Likewise.
1565 * testsuite/22_locale/moneypunct/members/wchar_t/wrapped_env.cc:
1566 Likewise.
1567 * testsuite/22_locale/moneypunct/members/wchar_t/wrapped_locale.cc:
1568 Likewise.
1569 * testsuite/22_locale/moneypunct_byname/named_equivalence.cc: Likewise.
1570 * testsuite/22_locale/num_get/get/char/1.cc: Likewise.
1571 * testsuite/22_locale/num_get/get/char/3.cc: Likewise.
1572 * testsuite/22_locale/num_get/get/char/5.cc: Likewise.
1573 * testsuite/22_locale/num_get/get/char/6.cc: Likewise.
1574 * testsuite/22_locale/num_get/get/char/9.cc: Likewise.
1575 * testsuite/22_locale/num_get/get/char/wrapped_env.cc: Likewise.
1576 * testsuite/22_locale/num_get/get/char/wrapped_locale.cc: Likewise.
1577 * testsuite/22_locale/num_get/get/wchar_t/1.cc: Likewise.
1578 * testsuite/22_locale/num_get/get/wchar_t/3.cc: Likewise.
1579 * testsuite/22_locale/num_get/get/wchar_t/5.cc: Likewise.
1580 * testsuite/22_locale/num_get/get/wchar_t/6.cc: Likewise.
1581 * testsuite/22_locale/num_get/get/wchar_t/9.cc: Likewise.
1582 * testsuite/22_locale/num_get/get/wchar_t/wrapped_env.cc: Likewise.
1583 * testsuite/22_locale/num_get/get/wchar_t/wrapped_locale.cc: Likewise.
1584 * testsuite/22_locale/num_put/put/char/1.cc: Likewise.
1585 * testsuite/22_locale/num_put/put/char/20909.cc: Likewise.
1586 * testsuite/22_locale/num_put/put/char/20914.cc: Likewise.
1587 * testsuite/22_locale/num_put/put/char/3.cc: Likewise.
1588 * testsuite/22_locale/num_put/put/char/5.cc: Likewise.
1589 * testsuite/22_locale/num_put/put/char/9780-2.cc: Likewise.
1590 * testsuite/22_locale/num_put/put/char/wrapped_env.cc: Likewise.
1591 * testsuite/22_locale/num_put/put/char/wrapped_locale.cc: Likewise.
1592 * testsuite/22_locale/num_put/put/wchar_t/1.cc: Likewise.
1593 * testsuite/22_locale/num_put/put/wchar_t/20909.cc: Likewise.
1594 * testsuite/22_locale/num_put/put/wchar_t/20914.cc: Likewise.
1595 * testsuite/22_locale/num_put/put/wchar_t/3.cc: Likewise.
1596 * testsuite/22_locale/num_put/put/wchar_t/5.cc: Likewise.
1597 * testsuite/22_locale/num_put/put/wchar_t/wrapped_env.cc: Likewise.
1598 * testsuite/22_locale/num_put/put/wchar_t/wrapped_locale.cc: Likewise.
1599 * testsuite/22_locale/numpunct/members/char/2.cc: Likewise.
1600 * testsuite/22_locale/numpunct/members/char/3.cc: Likewise.
1601 * testsuite/22_locale/numpunct/members/char/wrapped_env.cc: Likewise.
1602 * testsuite/22_locale/numpunct/members/char/wrapped_locale.cc: Likewise.
1603 * testsuite/22_locale/numpunct/members/wchar_t/2.cc: Likewise.
1604 * testsuite/22_locale/numpunct/members/wchar_t/wrapped_env.cc: Likewise.
1605 * testsuite/22_locale/numpunct/members/wchar_t/wrapped_locale.cc:
1606 Likewise.
1607 * testsuite/22_locale/numpunct_byname/named_equivalence.cc: Likewise.
1608 * testsuite/22_locale/time_get/date_order/char/wrapped_env.cc: Likewise.
1609 * testsuite/22_locale/time_get/date_order/char/wrapped_locale.cc:
1610 Likewise.
1611 * testsuite/22_locale/time_get/date_order/wchar_t/wrapped_env.cc:
1612 Likewise.
1613 * testsuite/22_locale/time_get/date_order/wchar_t/wrapped_locale.cc:
1614 Likewise.
1615 * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
1616 * testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.
1617 * testsuite/22_locale/time_get/get_date/char/wrapped_env.cc: Likewise.
1618 * testsuite/22_locale/time_get/get_date/char/wrapped_locale.cc:
1619 Likewise.
1620 * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise.
1621 * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.
1622 * testsuite/22_locale/time_get/get_date/wchar_t/4.cc: Likewise.
1623 * testsuite/22_locale/time_get/get_date/wchar_t/wrapped_env.cc:
1624 Likewise.
1625 * testsuite/22_locale/time_get/get_date/wchar_t/wrapped_locale.cc:
1626 Likewise.
1627 * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.
1628 * testsuite/22_locale/time_get/get_monthname/char/wrapped_env.cc:
1629 Likewise.
1630 * testsuite/22_locale/time_get/get_monthname/char/wrapped_locale.cc:
1631 Likewise.
1632 * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
1633 * testsuite/22_locale/time_get/get_monthname/wchar_t/wrapped_env.cc:
1634 Likewise.
1635 * testsuite/22_locale/time_get/get_monthname/wchar_t/wrapped_locale.cc:
1636 Likewise.
1637 * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
1638 * testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
1639 * testsuite/22_locale/time_get/get_time/char/wrapped_env.cc: Likewise.
1640 * testsuite/22_locale/time_get/get_time/char/wrapped_locale.cc:
1641 Likewise.
1642 * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
1643 * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
1644 * testsuite/22_locale/time_get/get_time/wchar_t/wrapped_env.cc:
1645 Likewise.
1646 * testsuite/22_locale/time_get/get_time/wchar_t/wrapped_locale.cc:
1647 Likewise.
1648 * testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
1649 * testsuite/22_locale/time_get/get_weekday/char/wrapped_env.cc:
1650 Likewise.
1651 * testsuite/22_locale/time_get/get_weekday/char/wrapped_locale.cc:
1652 Likewise.
1653 * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
1654 * testsuite/22_locale/time_get/get_weekday/wchar_t/wrapped_env.cc:
1655 Likewise.
1656 * testsuite/22_locale/time_get/get_weekday/wchar_t/wrapped_locale.cc:
1657 Likewise.
1658 * testsuite/22_locale/time_put/put/char/17038.cc: Likewise.
1659 * testsuite/22_locale/time_put/put/char/2.cc: Likewise.
1660 * testsuite/22_locale/time_put/put/char/3.cc: Likewise.
1661 * testsuite/22_locale/time_put/put/char/4.cc: Likewise.
1662 * testsuite/22_locale/time_put/put/char/6.cc: Likewise.
1663 * testsuite/22_locale/time_put/put/char/7.cc: Likewise.
1664 * testsuite/22_locale/time_put/put/char/8.cc: Likewise.
1665 * testsuite/22_locale/time_put/put/char/9780-1.cc: Likewise.
1666 * testsuite/22_locale/time_put/put/char/wrapped_env.cc: Likewise.
1667 * testsuite/22_locale/time_put/put/char/wrapped_locale.cc: Likewise.
1668 * testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.
1669 * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
1670 * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
1671 * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
1672 * testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
1673 * testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
1674 * testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
1675 * testsuite/22_locale/time_put/put/wchar_t/wrapped_env.cc: Likewise.
1676 * testsuite/22_locale/time_put/put/wchar_t/wrapped_locale.cc: Likewise.
1677 * testsuite/27_io/basic_filebuf/imbue/char/13007.cc: Likewise.
1678 * testsuite/27_io/basic_filebuf/imbue/char/13171-1.cc: Likewise.
1679 * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
1680 * testsuite/27_io/basic_filebuf/imbue/char/13171-4.cc: Likewise.
1681 * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
1682 * testsuite/27_io/basic_filebuf/imbue/char/14975-1.cc: Likewise.
1683 * testsuite/27_io/basic_filebuf/imbue/char/2.cc: Likewise.
1684 * testsuite/27_io/basic_filebuf/imbue/char/9322.cc: Likewise.
1685 * testsuite/27_io/basic_filebuf/imbue/wchar_t/12868.cc: Likewise.
1686 * testsuite/27_io/basic_filebuf/imbue/wchar_t/13007.cc: Likewise.
1687 * testsuite/27_io/basic_filebuf/imbue/wchar_t/13171-3.cc: Likewise.
1688 * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-2.cc: Likewise.
1689 * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-3.cc: Likewise.
1690 * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc: Likewise.
1691 * testsuite/27_io/basic_filebuf/imbue/wchar_t/2.cc: Likewise.
1692 * testsuite/27_io/basic_filebuf/imbue/wchar_t/9322.cc: Likewise.
1693 * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-1.cc: Likewise.
1694 * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-2.cc: Likewise.
1695 * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-3.cc: Likewise.
1696 * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-4.cc: Likewise.
1697 * testsuite/27_io/basic_filebuf/seekoff/wchar_t/1.cc: Likewise.
1698 * testsuite/27_io/basic_filebuf/seekoff/wchar_t/2.cc: Likewise.
1699 * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: Likewise.
1700 * testsuite/27_io/basic_filebuf/underflow/wchar_t/1.cc: Likewise.
1701 * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-1.cc: Likewise.
1702 * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-2.cc: Likewise.
1703 * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-3.cc: Likewise.
1704 * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-4.cc: Likewise.
1705 * testsuite/27_io/basic_filebuf/underflow/wchar_t/2.cc: Likewise.
1706 * testsuite/27_io/basic_filebuf/underflow/wchar_t/3.cc: Likewise.
1707 * testsuite/27_io/basic_filebuf/underflow/wchar_t/4.cc: Likewise.
1708 * testsuite/27_io/basic_filebuf/underflow/wchar_t/5.cc: Likewise.
1709 * testsuite/27_io/basic_filebuf/underflow/wchar_t/9520.cc: Likewise.
1710 * testsuite/27_io/basic_ios/copyfmt/char/2.cc: Likewise.
1711 * testsuite/27_io/basic_ostream/inserters_arithmetic/char/2.cc:
1712 Likewise.
1713 * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/2.cc:
1714 Likewise.
1715 * testsuite/27_io/basic_streambuf/imbue/char/13007-1.cc: Likewise.
1716 * testsuite/27_io/basic_streambuf/imbue/char/13007-2.cc: Likewise.
1717 * testsuite/27_io/basic_streambuf/imbue/char/9322.cc: Likewise.
1718 * testsuite/27_io/basic_streambuf/imbue/wchar_t/13007-1.cc: Likewise.
1719 * testsuite/27_io/basic_streambuf/imbue/wchar_t/13007-2.cc: Likewise.
1720 * testsuite/27_io/basic_streambuf/imbue/wchar_t/9322.cc: Likewise.
1721 * testsuite/27_io/basic_stringbuf/imbue/char/9322.cc: Likewise.
1722 * testsuite/27_io/basic_stringbuf/imbue/wchar_t/9322.cc: Likewise.
1723 * testsuite/27_io/objects/wchar_t/10.cc: Likewise.
1724 * testsuite/27_io/objects/wchar_t/11.cc: Likewise.
1725 * testsuite/27_io/objects/wchar_t/12.cc: Likewise.
1726 * testsuite/27_io/objects/wchar_t/13.cc: Likewise.
1727 * testsuite/27_io/objects/wchar_t/9520.cc: Likewise.
1728 * testsuite/ext/stdio_sync_filebuf/wchar_t/12077.cc: Likewise.
1729
1730 2005-05-17 Nathan Sidwell <nathan@codesourcery.com>
1731
1732 * libsupc++/eh_personality.cc (gcc_unreachable): Define.
1733
1734 2005-05-16 Paolo Carlini <pcarlini@suse.de>
1735
1736 * docs/html/install.html: Update list of required named
1737 locales, add "es_ES".
1738
1739 2005-05-13 Magnus Fromreide <magfr@lysator.liu.se>
1740
1741 * testsuite/27_io/basic_streambuf/sgetn/char/1.cc: Use
1742 initialization instead of copying as the string is used only once.
1743 * testsuite/27_io/basic_streambuf/sgetn/wchar_t/1.cc: Likewise.
1744 * testsuite/27_io/basic_streambuf/sputn/char/1.cc: Likewise.
1745 * testsuite/27_io/basic_streambuf/sputn/wchar_t/1.cc: Likewise.
1746
1747 2005-05-12 Benjamin Kosnik <bkoz@redhat.com>
1748
1749 * scripts/create_testsuite_files: Fix.
1750
1751 2005-05-12 Kaz Kojima <kkojima@gcc.gnu.org>
1752
1753 * testsuite/18_support/numeric_limits.cc (dg-options): Add
1754 -mieee to options on sh*-*-*.
1755
1756 2005-05-10 Jonathan Wakely <redi@gcc.gnu.org>
1757
1758 * include/debug/debug.h: Fix typo in macro name.
1759
1760 2005-05-09 Paolo Carlini <pcarlini@suse.de>
1761 Giovanni Bajo <giovannibajo@gcc.gnu.org>
1762
1763 PR libstdc++/18604
1764 * include/bits/deque.tcc: Fully qualify names from namespace std.
1765 * include/bits/stl_bvector.h: Likewise.
1766 * include/bits/stl_deque.h: Likewise.
1767 * include/bits/stl_list.h: Likewise.
1768 * include/bits/stl_map.h: Likewise.
1769 * include/bits/stl_multimap.h: Likewise.
1770 * include/bits/stl_multiset.h: Likewise.
1771 * include/bits/stl_set.h: Likewise.
1772 * include/bits/stl_vector.h: Likewise.
1773 * include/bits/vector.tcc: Likewise.
1774 * include/std/std_bitset.h: Likewise.
1775 * testsuite/23_containers/bitset/18604.cc: New.
1776 * testsuite/23_containers/deque/18604.cc: Likewise.
1777 * testsuite/23_containers/list/18604.cc: Likewise.
1778 * testsuite/23_containers/map/18604.cc: Likewise.
1779 * testsuite/23_containers/set/18604.cc: Likewise.
1780 * testsuite/23_containers/vector/18604.cc: Likewise.
1781
1782 2005-05-09 Mike Stump <mrs@apple.com>
1783
1784 * configure: Regenerate.
1785
1786 2005-05-09 Jonathan Wakely <redi@gcc.gnu.org>
1787
1788 DR 434. bitset::to_string() hard to use [Ready]
1789 * include/debug/bitset (to_string): Add three overloads, taking
1790 fewer template arguments.
1791
1792 2005-05-06 Mark Mitchell <mark@codesourcery.com>
1793
1794 * testsuite/testsuite_hooks.cc (try_mkfifo): Remove.
1795 * testsuite/testsuite_hooks.h (try_mkfifo): Likewise.
1796 * testsuite/27_io/basic_filebuf/close/char/4879.cc: Use
1797 dg-require-fork and dg-require-mkfifo. Replace try_mkfifo with
1798 mkfifo.
1799 * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
1800 * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
1801 * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
1802 * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-2.cc:
1803 Likewise.
1804 * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc:
1805 Likewise.
1806 * testsuite/27_io/basic_filebuf/open/char/9507.cc: Likewise.
1807 * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc:
1808 Likewise.
1809 * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
1810 * testsuite/27_io/objects/char/7.cc: Likewise.
1811 * testsuite/27_io/objects/char/9661-1.cc: Likewise.
1812 * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
1813 * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
1814
1815 2005-05-04 Benjamin Kosnik <bkoz@redhat.com>
1816
1817 * acinclude.m4: Remove testsuite_wchar_t and testsuite_thread.
1818 * testsuite/Makefile.am: Same.
1819 * scripts/create_testsuite_files: Same.
1820 * Makefile.in: Regenerate.
1821 * configure: Same.
1822 * include/Makefile.in: Same.
1823 * libmath/Makefile.in: Same.
1824 * libsupc++/Makefile.in: Same.
1825 * po/Makefile.in: Same.
1826 * src/Makefile.in: Same.
1827
1828 2005-05-04 Mark Mitchell <mark@codesourcery.com>
1829
1830 * testsuite/lib/libstdc++.exp (v3-build_support): Look for
1831 __GTHREADS, rather than _GLIBCXX_HAVE_GTHR_DEFAULT, to determine
1832 whether or not thread support is available.
1833
1834 * docs/html/test.html: Explain how to run the testsuite on an
1835 installed directory.
1836
1837 2005-05-01 Paolo Carlini <pcarlini@suse.de>
1838
1839 * config/os/aix/os_defines.h: Remove obsolete __off_t,
1840 __off64_t, __ssize_t defines.
1841 * config/os/djgpp/os_defines.h: Likewise.
1842 * config/os/hpux/os_defines.h: Likewise.
1843 * config/os/irix/irix5.2/os_defines.h: Likewise.
1844 * config/os/irix/irix6.5/os_defines.h: Likewise.
1845 * config/os/solaris/solaris2.5/os_defines.h: Likewise.
1846 * config/os/solaris/solaris2.6/os_defines.h: Likewise.
1847 * config/os/solaris/solaris2.7/os_defines.h: Likewise.
1848 * docs/html/17_intro/porting.html: Don't discuss the defines.
1849 * docs/html/17_intro/porting.texi: Likewise.
1850
1851 2005-04-29 Paolo Carlini <pcarlini@suse.de>
1852 Nathan Myers <ncm@cantrip.org>
1853
1854 PR libstdc++/21286
1855 * include/bits/fstream.tcc (basic_filebuf<>::xsgetn):
1856 Loop on short reads; remove the work-around for
1857 libstdc++/20806, not needed anymore.
1858
1859 2005-04-29 Paolo Carlini <pcarlini@suse.de>
1860
1861 PR libstdc++/21238
1862 * include/bits/locale_facets.tcc (num_get::_M_extract_float,
1863 num_get::_M_extract_int, num_get::do_get(bool&),
1864 num_put::_M_insert_int, num_put::_M_insert_float,
1865 num_put::do_put(bool), money_get::_M_extract,
1866 money_put::_M_insert): Adjust the __cache_type typedef not to
1867 forward to a numpunct/moneypunct typedef.
1868 * testsuite/testsuite_character.h: Add pod_uint and its numpunct
1869 and moneypunct specializations.
1870 * testsuite/testsuite_character.cc: Add numpunct<pod_uint>::id
1871 and moneypunct<pod_uint>::id.
1872 * testsuite/22_locale/num_get/3.cc: New.
1873 * testsuite/22_locale/num_put/3.cc: Likewise.
1874 * testsuite/22_locale/money_get/3.cc: Likewise.
1875 * testsuite/22_locale/money_put/3.cc: Likewise.
1876
1877 * include/bits/locale_facets.tcc (money_put::_M_insert,
1878 time_get::_M_extract_name): Prefer operator== to operator!=
1879 on char_types.
1880
1881 2005-04-29 Paolo Carlini <pcarlini@suse.de>
1882
1883 * include/tr1/type_traits (is_convertible): Adjust according
1884 to the resolution of TR1 issue 3.20.
1885 * testsuite/tr1/4_metaprogramming/relationships_between_types/
1886 is_convertible/is_convertible.cc: Add tests.
1887
1888 2005-04-28 Paolo Carlini <pcarlini@suse.de>
1889 Gabriel Dos Reis <gdr@integrable-solutions.net>
1890
1891 PR libstdc++/21244 (cont)
1892 * include/bits/cpp_type_traits.h (struct __traitor): Convert
1893 to bool the values.
1894 * include/bits/stl_algo.h: Convert _S_threshold to int.
1895 * include/bits/stl_bvector.h: Revert previous change, convert
1896 _S_word_bit to int.
1897 * include/debug/formatter.h: Convert __max_parameters to
1898 size_t.
1899 * include/ext/mt_allocator.h: Likewise for _S_chunk_size.
1900 * include/ext/pool_allocator.h: Likewise for _S_max_bytes and
1901 _S_align.
1902 * include/ext/rope: Likewise for _S_alloc_granularity; convert
1903 _S_max_rope_depth to int.
1904 * include/ext/ropeimpl.h: Convert _S_path_cache_len to int;
1905 _S_max_rope_depth to int; _S_copy_max to size_t.
1906
1907 2005-04-27 Benjamin Kosnik <bkoz@redhat.com>
1908
1909 * docs/doxygen/user.cfg.in: Update to doxygen-1.4.2.
1910 * docs/doxygen/doxygroups.cc: Update namespace comments.
1911
1912 2005-04-27 Dominik Strasser <dominik.strasser@infineon.com>
1913 Paolo Carlini <pcarlini@suse.de>
1914
1915 PR libstdc++/21244
1916 * include/bits/stl_bvector.h: Change the anonymous enum
1917 at namespace scope to _S_word_bit_enum.
1918 * testsuite/23_containers/vector/bool/21244.cc: New.
1919
1920 2005-04-27 Paolo Carlini <pcarlini@suse.de>
1921
1922 * include/tr1/type_traits (has_trivial_copy, has_trivial_assign,
1923 has_nothrow_copy, has_nothrow_assign): Adjust according to the
1924 resolution of TR1 issue 3.21.
1925 * testsuite/testsuite_tr1.h (test_copy_property,
1926 test_assign_property): Remove.
1927 * testsuite/tr1/4_metaprogramming/type_properties/
1928 has_nothrow_assign/has_nothrow_assign.cc: Adjust.
1929 * testsuite/tr1/4_metaprogramming/type_properties/
1930 has_nothrow_copy/has_nothrow_copy.cc: Likewise.
1931 * testsuite/tr1/4_metaprogramming/type_properties/
1932 has_trivial_assign/has_trivial_assign.cc: Likewise.
1933 * testsuite/tr1/4_metaprogramming/type_properties/
1934 has_trivial_copy/has_trivial_copy.cc: Likewise.
1935
1936 2005-04-26 Jones Desougi <jones@ingate.com>
1937
1938 PR libstdc++/21131
1939 * linkage.m4: Fix comments.
1940
1941 2005-04-26 Paolo Carlini <pcarlini@suse.de>
1942
1943 PR libstdc++/21209
1944 * include/bits/locale_facets.tcc (_M_extract_int): Avoid signed
1945 integer overflow, always use a suited unsigned type in the main
1946 parsing loop.
1947 (struct __to_unsigned_type): New.
1948 * testsuite/22_locale/num_get/get/char/16.cc: New.
1949 * testsuite/22_locale/num_get/get/wchar_t/16.cc: Likewise.
1950
1951 2005-04-25 Paolo Carlini <pcarlini@suse.de>
1952
1953 PR libstdc++/21035
1954 * include/bits/basic_string.h (compare): Adjust the documentation
1955 to match the implementation and the standard.
1956
1957 2005-04-24 Paolo Carlini <pcarlini@suse.de>
1958
1959 * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 35.
1960
1961 2005-04-20 Mark Mitchell <mark@codesourcery.com>
1962
1963 * testsuite/ext/bitmap_allocator/check_allocate_max_size.cpp: Add
1964 explicit instantiations for systems without weak symbols.
1965 * testsuite/ext/bitmap_allocator/check_deallocate_null.cc:
1966 Likewise.
1967
1968 2005-04-18 Jonathan Wakely <redi@gcc.gnu.org>
1969
1970 * include/bits/stl_algo.h (rotate_copy): Add missing std qualification.
1971
1972 2005-04-17 Paolo Carlini <pcarlini@suse.de>
1973
1974 PR libstdc++/20914
1975 * include/bits/locale_facets.tcc (__int_to_char(_CharT*, _ValueT,
1976 const _CharT*, ios_base::fmtflags, bool)): Don't deal with numeric
1977 base or sign here, instead...
1978 (_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT)): ... here,
1979 after adding the grouping. This fixes the bug and also allows to
1980 clean-up the code dealing with integer types.
1981 (_M_group_int(const char*, size_t, _CharT, ios_base&, _CharT*,
1982 _CharT*, int&)): Simplify, remove bits dealing with numeric base.
1983 (__int_to_char(_CharT*, unsigned long, const _CharT*,
1984 ios_base::fmtflags), __int_to_char(_CharT*, unsigned long long,
1985 const _CharT*, ios_base::fmtflags)): Remove hackish fix for
1986 libstdc++/15565.
1987 (__int_to_char(_CharT*, long, const _CharT*, ios_base::fmtflags),
1988 __int_to_char(_CharT*, long long, const _CharT*, ios_base::fmtflags)):
1989 Simplify, don't pass the sign.
1990 (_M_insert_float(_OutIter, ios_base&, _CharT, char, _ValueT)):
1991 Deal with a sign at the beginning of __cs; robustify the grouping
1992 check.
1993 * testsuite/22_locale/num_put/put/char/20914.cc: New.
1994 * testsuite/22_locale/num_put/put/wchar_t/20914.cc: Likewise.
1995
1996 2005-04-14 Benjamin Kosnik <bkoz@redhat.com>
1997
1998 * include/ext/bitmap_allocator.h
1999 (__gnu_cxx::free_list::_M_get_mutex): New.
2000 (__gnu_cxx::free_list::_M_get_free_list): New.
2001 (__gnu_cxx::free_list::_S_bfl_mutex): Remove.
2002 (__gnu_cxx::free_list::_S_free_list): Remove.
2003 * src/bitmap_allocator.cc: Same.
2004 * config/linker-map.gnu: Remove free_list and mutex export.
2005
2006 2005-04-14 Benjamin Kosnik <bkoz@redhat.com>
2007
2008 * include/ext/pod_char_traits.h (__gnu_cxx::character): Add char_type.
2009 (character::to): New.
2010 (character::from): New.
2011 (operator==): Add state parameter.
2012 (operator<): Same.
2013 (char_traits::copy): Use std::copy.
2014 (char_traits::assign): Use std::fill_n.
2015 (char_traits::to_char_type): Use character::from.
2016 (char_traits::to_int_type): Use character::to.
2017 * testsuite/testsuite_character.h (__gnu_test::character): Remove.
2018 (__gnu_test::conversion_state): Remove.
2019 (__gnu_test::pod_char): Remove.
2020 (pod_char): New typedef.
2021 (pod_uchar): New typedef.
2022 (pod_ushort): New typedef.
2023 * testsuite/testsuite_character.cc: Fixups.
2024 * testsuite/21_strings/basic_string/inserters_extractors/pod/
2025 10081-in.cc: Same.
2026 * testsuite/21_strings/basic_string/inserters_extractors/pod/
2027 10081-out.cc: Same.
2028 * testsuite/22_locale/numpunct/members/pod/1.cc: Same.
2029 * testsuite/22_locale/numpunct/members/pod/2.cc: Same.
2030 * testsuite/27_io/basic_filebuf/close/12790-1.cc: Same.
2031 * testsuite/27_io/basic_filebuf/open/12790-1.cc: Same.
2032 * testsuite/27_io/basic_filebuf/seekoff/12790-1.cc: Same.
2033 * testsuite/27_io/basic_filebuf/seekoff/12790-2.cc: Same.
2034 * testsuite/27_io/basic_filebuf/seekoff/12790-3.cc: Same.
2035 * testsuite/27_io/basic_filebuf/seekoff/12790-4.cc: Same.
2036 * testsuite/27_io/basic_filebuf/seekpos/12790-1.cc: Same.
2037 * testsuite/27_io/basic_filebuf/seekpos/12790-2.cc: Same.
2038 * testsuite/27_io/basic_filebuf/seekpos/12790-3.cc: Same.
2039 * testsuite/27_io/basic_ios/imbue/14072.cc: Same.
2040 * testsuite/27_io/basic_istream/extractors_arithmetic/pod/
2041 3983-1.cc: Same.
2042 * testsuite/27_io/basic_istream/extractors_character/pod/
2043 3983-2.cc: Same.
2044 * testsuite/27_io/basic_istream/extractors_other/pod/3983-3.cc: Same.
2045 * testsuite/27_io/basic_istream/sentry/pod/1.cc: Same.
2046 * testsuite/27_io/basic_ostream/sentry/pod/1.cc: Same.
2047
2048 2005-04-12 Mike Stump <mrs@apple.com>
2049
2050 * configure: Regenerate.
2051
2052 2005-04-08 Benjamin Kosnik <bkoz@redhat.com>
2053
2054 * testsuite/Makefile.am: Remove libv3test.a.
2055 * testsuite/Makefile.in: Regenerate.
2056 * testsuite/lib/libstdc++.exp (v3_target_compile): Fix comments.
2057
2058 2005-04-08 Paolo Carlini <pcarlini@suse.de>
2059
2060 PR libstdc++/20909
2061 * include/bits/locale_facets.tcc (num_put<>::_M_insert_float):
2062 Don't even try to group numbers like 2e20, i.e., no decimal
2063 point, scientific notation.
2064 * testsuite/22_locale/num_put/put/char/20909.cc: New.
2065 * testsuite/22_locale/num_put/put/wchar_t/20909.cc: Likewise.
2066
2067 2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
2068
2069 * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Define _GLIBCXX_ASM_SYMVER.
2070 * acconfig.h: Delete file.
2071 * Makefile.in, acinclude.m4, configure: Regenerate.
2072
2073 2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
2074
2075 * linkage.m4 (GLIBCXX_MAYBE_UNDERSCORED_FUNCS): New macro.
2076 (GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1,
2077 GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2,
2078 GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3,
2079 GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1,
2080 GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2): Use it.
2081 (GLIBCXX_CHECK_MATH_SUPPORT): Delete obsolete comment.
2082 * acconfig.h: Delete redundant macros.
2083 * config.h.in, configure: Regenerate.
2084
2085 2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
2086
2087 * linkage.m4 (GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1): Eliminate
2088 a subshell and if test fails, test for same functions with
2089 leading underscore.
2090 (GLIBCXX_CHECK_MATH_SUPPORT): Eliminate seperate checks for _funcs.
2091 * configure: Regenerate.
2092
2093 2005-04-08 Danny Smith <dannysmith@users.sourceforge.net>
2094 Paolo Carlini <pcarlini@suse.de>
2095
2096 PR libstdc++/20806
2097 * config/os/mingw32/os_defines.h: Define
2098 _GLIBCXX_HAVE_DOS_BASED_FILESYSTEM.
2099 * config/os/newlib/os_defines.h: Likewise, for __CYGWIN__.
2100 * include/bits/fstream.tcc (basic_filebuf<>::showmanyc()):
2101 Use it.
2102 (basic_filebuf<>::xsgetn(_CharT*, streamsize)): Likewise.
2103
2104 2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
2105
2106 * acconfig.h: Sort the bottom section.
2107 * config.h.in: Regenerate.
2108
2109 2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
2110
2111 * acconfig.h: Remove redundant HAVE_FLOAT_H.
2112 * config.h.in: Regenerate.
2113
2114 2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
2115
2116 * configure.ac: Create template for PACKAGE and VERSION.
2117 Update comment on how to regenerate file. Update minimum
2118 automake version to 1.9.3.
2119 * acconfig.h: Remove PACKAGE and VERSION.
2120 * aclocal.m4, configure, Makefile.in, po/Makefile.in,
2121 src/Makefile.in, include/Makefile.in, libmath/Makefile.in,
2122 testsuite/Makefile.in, config.h.in: Regenerate.
2123
2124 2005-04-06 Benjamin Kosnik <bkoz@redhat.com>
2125
2126 * docs/html/test.html: Update.
2127 * testsuite/printnow.c: Remove.
2128 * scripts/check_survey.in: Remove.
2129
2130 * testsuite/abi_check.cc: To...
2131 * testuite/testsuite_abi_check.cc: ...here.
2132 * testsuite/libstdc++-abi/abi.exp: Change abi_check.cc to
2133 testsuite_abi_check.cc.
2134
2135 * testsuite/testsuite_hooks.h: Move character related bits to...
2136 * testsuite/testsuite_character.h: ...here.
2137 * testsuite/testsuite_character.cc: ... and here.
2138 * testsuite/21_strings/basic_string/inserters_extractors/pod/
2139 10081-in.cc: Use testsuite_character.h.
2140 * testsuite/21_strings/basic_string/inserters_extractors/pod/
2141 10081-out.cc: Same.
2142 * testsuite/22_locale/numpunct/members/pod/1.cc: Same.
2143 * testsuite/22_locale/numpunct/members/pod/2.cc: Same.
2144 * testsuite/27_io/basic_filebuf/2.cc: Same.
2145 * testsuite/27_io/basic_fstream/2.cc: Same.
2146 * testsuite/27_io/basic_istream/2.cc: Same.
2147 * testsuite/27_io/basic_istream/extractors_arithmetic/pod/
2148 3983-1.cc: Same.
2149 * testsuite/27_io/basic_istream/extractors_character/char/
2150 9826.cc: Same.
2151 * testsuite/27_io/basic_istream/extractors_character/pod/
2152 3983-2.cc: Same.
2153 * testsuite/27_io/basic_istream/extractors_other/pod/3983-3.cc: Same.
2154 * testsuite/27_io/basic_istream/sentry/pod/1.cc: Same.
2155 * testsuite/27_io/basic_ostream/2.cc: Same.
2156 * testsuite/27_io/basic_ostream/sentry/pod/1.cc: Same.
2157 * testsuite/27_io/basic_streambuf/2.cc: Same.
2158 * testsuite/27_io/basic_stringbuf/2.cc: Same.
2159 * testsuite/27_io/basic_stringbuf/4.cc: Same.
2160 * testsuite/27_io/basic_stringstream/2.cc: Same.
2161 * testsuite/27_io/fpos/1.cc: Same.
2162 * testsuite/ext/mt_allocator/tune-1.cc: Same.
2163 * testsuite/ext/mt_allocator/tune-2.cc: Same.
2164 * testsuite/ext/stdio_filebuf/char/1.cc: Same.
2165 * testsuite/lib/libstdc++.exp (v3-build_support): Add
2166 testsuite_character.cc.
2167 * testsuite/Makefile.am (libv3test_a_SOURCES): Add
2168 testsuite_character.cc.
2169 * testsuite/Makefile.in: Regenerate.
2170
2171 * configure.ac: Remove use of check_survey.
2172 * configure: Regenerate.
2173 * testsuite/Makefile.am: Remove check-script and
2174 check-script-install rules.
2175 * testsuite/Makefile.in: Regenerate.
2176
2177 2005-04-06 Ulrich Weigand <uweigand@de.ibm.com>
2178
2179 * config/cpu/s390/atomicity.h (__exchange_and_add): Add "memory"
2180 clobber to inline assembly statement.
2181
2182 2005-04-06 Kelley Cook <kcook@gcc.gnu.org>
2183
2184 * acinclude.m4 (_GLIBCXX_USE_LONG_LONG,
2185 _GLIBCXX_USE_WCHAR_T, _GLIBCXX_USE_C99, _GLIBCXX_USE_C99_MATH,
2186 _GLIBCXX_USE_C99_COMPLEX, _GLIBCXX_RES_LIMITS, _GLIBCXX_CONCEPT_CHECKS,
2187 _GLIBCXX_SYMVER, _GLIBCXX_USE_LFS, _GLIBCXX_FULLY_DYNAMIC_STRING,
2188 _GLIBCXX_USE_NLS, HAVE_GTHR_DEFAULT, HAVE_MBSTATE_T, HAVE_POLL,
2189 HAVE_S_ISREG, HAVE_S_IFREG, HAVE_WRITEV, HAVE_INT64_T,
2190 HAVE_LC_MESSAGES): Use long form of AC_DEFINE ...
2191 * acconfig.h: ... to eliminate them from here.
2192 (_GLIBCXX_ASM_SYMVER): Move definition below @BOTTOM@.
2193 * config.h.in, configure: Regenerate.
2194
2195 2005-04-05 Kelley Cook <kcook@gcc.gnu.org>
2196
2197 * Makefile.am (ACLOCAL_AMFLAGS): Define.
2198 * crossconfig.m4: Wrap file into new GLIBCXX_CROSSCONFIG macro.
2199 * configure.ac: Use it.
2200 * acinclude.m4: Delete explicit m4_includes and sincludes.
2201 * aclocal.m4, configure, Makefile.in, po/Makefile.in,
2202 src/Makefile.in, include/Makefile.in, libmath/Makefile.in,
2203 testsuite/Makefile.in: Regenerate.
2204
2205 2005-04-05 Jonathan Wakely <redi@gcc.gnu.org>
2206
2207 * include/tr1/memory, include/tr1/boost_shared_ptr.h: Use mutex
2208 to make _Sp_counted_base::add_ref_lock() thread-safe. Check whether
2209 to destroy resources by testing for equality, not inequality. Add
2210 empty critical sections to solve memory visibility issues.
2211 * testsuite/tr1/2_general_utilities/memory/
2212 shared_ptr/cons/auto_ptr_neg.cc: Use dg-excess-errors instead of
2213 explicitly listing line numbers which need to be kept in sync.
2214 * testsuite/tr1/2_general_utilities/memory/
2215 shared_ptr/assign/auto_ptr_neg.cc: Same.
2216 * testsuite/tr1/2_general_utilities/memory/
2217 shared_ptr/assign/auto_ptr_rvalue_neg.cc: Same.
2218 * testsuite/tr1/2_general_utilities/memory/
2219 shared_ptr/cons/weak_ptr_expired.cc: Make XFAIL for consistency when
2220 -fno-exceptions.
2221 * testsuite/tr1/2_general_utilities/memory/
2222 enable_shared_from_this/not_shared.cc: Add explanatory comments.
2223 * testsuite/tr1/2_general_utilities/memory/
2224 enable_shared_from_this/not_shared2.cc: Same.
2225 * testsuite/tr1/2_general_utilities/memory/
2226 enable_shared_from_this/not_shared3.cc: Same.
2227
2228 2005-04-05 Kelley Cook <kcook@gcc.gnu.org>
2229
2230 * acconfig.h: Delete macros already AC_DEFINED.
2231 * config.h.in: Regenerate.
2232
2233 2005-04-05 Kelley Cook <kcook@gcc.gnu.org>
2234
2235 * acconfig.h (HAVE_MODF): Remove.
2236 * linkage.m4: Check for modf.
2237 * config.h.in, configure: Regenerate.
2238
2239 2005-04-05 Kelley Cook <kcook@gcc.gnu.org>
2240
2241 * acconfig.h (ENABLE_NLS, HAVE_CATGETS): Remove.
2242 (HAVE_GETTEXT, HAVE_STPCPY): Likewise.
2243 * config.h.in: Regenerate.
2244
2245 2005-04-05 Kelley Cook <kcook@gcc.gnu.org>
2246
2247 * linkage.m4 (GLIBCXX_CHECK_BUILTIN_MATH_DEC): Use m4 translit macro
2248 to convert to uppercase instead of shelling out to tr.
2249 * acconfig.h: Remove now redundant HAVE__BUILTINS_*.
2250 * configure, config.h.in: Regenerate.
2251
2252 2005-04-05 Kelley Cook <kcook@gcc.gnu.org>
2253
2254 * acconfig.h (HAVE_TANL): Correct cut-and-paste typo.
2255 * config.h.in: Regenerate.
2256
2257 2005-04-04 Mark Mitchell <mark@codesourcery.com>
2258
2259 * testsuite/Makefile.am (check-local): Remove.
2260 (curent_symbols.txt): Likewise.
2261 (check-abi): Do not depend on current_symbols.txt.
2262 * testsuite/Makefile.in: Regenerated.
2263 * testsuite/libstdc++-abi/abi.exp: Build current_symbols.txt.
2264
2265 2005-04-02 Douglas Gregor <doug.gregor@gmail.com>
2266
2267 * include/tr1/tuple_iterate.h (tuple_element): Use new macro
2268 _GLIBCXX_T_NUM_ARGS_PLUS_1 because _T is a macro on Darwin.
2269 * include/tr1/repeat.h (_GLIBCXX_T_NUM_ARGS_PLUS_1): Define for
2270 each iteration.
2271 * scripts/gen_includers.h: Define _GLIBCXX_T_NUM_ARGS_PLUS_1 for
2272 each iteration.
2273
2274 2005-04-01 Douglas Gregor <doug.gregor@gmail.com>
2275
2276 * include/tr1/functional (_Maybe_wrap_member_pointer): Wrap up
2277 member pointers in _Mem_fn but let other function objects pass
2278 through unchanged.
2279 * include/tr1/functional_iterator (bind): Reduce number of bind()
2280 overloads to two to eliminate ambiguities. Use
2281 _Maybe_wrap_member_pointer to handle member pointers gracefully.
2282
2283 2005-04-01 Mark Mitchell <mark@codesourcery.com>
2284
2285 * testsuite/Makefile.am (noinst_PROGRAMS): Remove.
2286 (site.exp): Write out the path to the baseline file.
2287 (check-abi): Use DejaGNU.
2288 (check-abi-verbose): Remove.
2289 * testsuite/Makefile.in: Regenerated.
2290 * testsuite/abi_check.cc (main): Check the return value from
2291 compare_symbols.
2292 * testsuite/testsuite_abi.cc (compare_symbols): Return a value.
2293 * testsuite/testsuite_abi.h (compare_symbols): Adjust prototype.
2294 * testsuite/libstdc++-abi/abi.exp: New file.
2295
2296 2005-03-31 Chris Jefferson <chris@bubblescope.net>
2297
2298 * include/tr1/tuple: Support iteration via tuple_iterate.h.
2299 * include/tr1/tuple_iterate.h: Iteration file for tuple.
2300
2301 2005-03-31 Douglas Gregor <doug.gregor@gmail.com>
2302
2303 * include/Makefile.am (tr1_headers): Add bind and mu repetition
2304 headers and reference_wrapper<> forwarding header.
2305 * include/Makefile.in: Regenerate.
2306 * include/tr1/bind_iterate.h: Implementation of function call
2307 operators for the function object returned from tr1::bind().
2308 * include/tr1/bind_repeat.h: Bind-specific repetition header,
2309 akin to include/tr1/repeat.h.
2310 * include/tr1/functional (_Mem_fn): Bug fix: declare result member
2311 template for use with result_of.
2312 (is_bind_expression): New.
2313 (is_placeholder): New.
2314 (_Placeholder): New. Placeholder type for bind.
2315 (_Mu): New. Implementation detail of bind.
2316 (_Bind, _Bind_result): New. Function objects returned by bind.
2317 (_GLIBCXX_JOIN): New. Required to create bind placeholders.
2318 * include/tr1/functional_iterate.h (_Bind, _Bind_result, bind):
2319 New. Implementation of tr1::bind.
2320 * include/tr1/mu_iterate.h (_Mu): result template and operator()
2321 for the _Mu helper to bind.
2322 * include/tr1/ref_fwd.h (reference_wrapper): Forward declaration
2323 used by tuple header.
2324 (ref): Ditto.
2325 (cref): Ditto.
2326 * include/tr1/repeat.h: Add bind-specific repetition macros.
2327 * include/tr1/tuple: Use reference_wrapper forwarding header for
2328 initial definitions, then include <tr1/functional> at the end, to
2329 make the circular dependencies work.
2330 (tie): Support zero-argument tie() function.
2331 * testsuite/tr1/3_function_objects/bind/all_bound.cc: New test of
2332 bind() functionality with parameters bound.
2333 * testsuite/tr1/3_function_objects/bind/nested.cc: New test of
2334 nested bind() expressions.
2335 * testsuite/tr1/3_function_objects/bind/placeholders.cc: New test
2336 of bind() placeholders.
2337 * testsuite/tr1/3_function_objects/bind/ref.cc: New test of bind()
2338 with arguments bound via reference_wrapper<>.
2339 * scripts/gen_includers.pl: Generate the repetitive part of
2340 include/tr1/repeat.h.
2341 * scripts/gen_bind_includers.pl: Generate the repetitive part of
2342 include/tr1/bind_repeat.h.
2343
2344 2005-03-30 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
2345
2346 * testsuite/Makefile.am (CXX): Use ${SHELL}.
2347 (GLIBCXX_INCLUDES): Same.
2348 (AM_CXXFLAGS): Same.
2349 * testsuite/Makefile.in: Regenerate.
2350
2351 2005-03-25 Mark Mitchell <mark@codesourcery.com>
2352
2353 * testsuite/lib/libstdc++.exp (libstdc++_init): Define LOCALEDIR
2354 when testing an installed compiler.
2355
2356 * testsuite/lib/libstdc++.exp (v3-build_support): Pass -w when
2357 compiling support objects.
2358
2359 2005-03-24 Benjamin Kosnik <bkoz@redhat.com>
2360
2361 * include/tr1/memory: Forward to...
2362 * include/tr1/boost_shared_ptr.h: ...here. Add Boost Software License.
2363 * include/Makefile.am (tr1_headers): Add boost_shared_ptr.h.
2364 * include/Makefile.in: Regenerate.
2365 * testsuite/tr1/2_general_utilities/memory/shared_ptr/cons/
2366 auto_ptr_neg.cc: Adjust line numbers.
2367
2368 2005-03-23 Mark Mitchell <mark@codesourcery.com>
2369
2370 * testsuite/Makefile.am (all-local): Do not build testsuite_files.
2371 * testsuite/Makefile.in: Regenerated.
2372
2373 2005-03-23 Benjamin Kosnik <bkoz@redhat.com>
2374
2375 * acinclude.m4: Adjust so that _GLIBCXX_USE_C99 implies
2376 using _GLIBCXX_USE_C99_COMPLEX, _GLIBCXX_USE_C99_MATH, and
2377 _GLIBCXX_USE_C99_WCHAR.
2378 Remove GLIBCXX_ENABLE_C_MBCHAR, consolidate in GLIBCXX_ENABLE_C99
2379 and GLIBCXX_ENABLE_WCHAR_T.
2380 Take C99 bits from GLIBCXX_CHECK_WCHAR_T_SUPPORT and put in
2381 GLIBCXX_ENABLE_C99.
2382 Change remaining parts of GLIBCXX_CHECK_WCHAR_T_SUPPORT to
2383 GLIBCXX_CHECK_ICONV_SUPPORT.
2384 * configure.ac: Remove GLIBCXX_ENABLE_C_MBCHAR, use
2385 GLIBCXX_CHECK_ICONV_SUPPORT and GLIBCXX_ENABLE_WCHAR_T.
2386 * crossconfig.m4: Same.
2387 * acconfig.h: Same, adjust comments.
2388 * config.h.in: Regenerate.
2389 * configure: Regenerate.
2390 * docs/html/configopts.html: Change --enable-c-mbchar to
2391 --enable-wchar_t.
2392
2393 * config/locale/gnu/c++locale_internal.h: Guard wide functions
2394 with _GLIBCXX_USE_WCHAR_T.
2395 * include/c_std/std_cwctype.h: Alphabetize, remove duplicates.
2396 * include/c_std/std_cstdio.h: Spacing.
2397
2398 * config/locale/gnu/c_locale.h: Tweaks for unused warnings.
2399 * src/debug.cc: Same.
2400
2401 2005-03-23 Mark Mitchell <mark@codesourcery.com>
2402
2403 * testsuite/libstdc++-dg/normal.exp: Read testsuite_files, if it
2404 exists.
2405
2406 * testsuite/lib/libstdc++.exp (libstdc++_wchar_t): Rename to ...
2407 (v3-wchar_t): ... this.
2408 (libstdc++_threads): Rename to ...
2409 (v3-threads): ... this.
2410 (libstdc++_test_objs): Rename to ...
2411 (v3-test_objs): ... this.
2412 (libstdc++_build_support): Rename to ...
2413 (v3-build_support): ... this.
2414 * testsuite/libstdc++-dg/normal.exp: Adjust to use new names.
2415
2416 * testsuite/lib/libstdc++.exp (libstdc++_init): Improve handling
2417 of compilers not in the build directory.
2418 (libstdc++_wchar_t): New variable.
2419 (libstdc++_threads): Likewise.
2420 (libstdc++_test_objs): Likewise.
2421 (v3_target_compile): Use libstdc++_test_objs.
2422 (v3-list-tests): Remove.
2423 (listdc++_build_support): New function.
2424 * testsuite/libstdc++-dg/normal.exp: Rework to dynamically
2425 generate list of tests.
2426
2427 2005-03-21 Chris Jefferson <chris@bubblescope.net>
2428
2429 PR libstdc++/20577
2430 * include/bits/stl_algobase.h (iter_swap): Only delegate iter_swap
2431 to swap when the iterator's reference_type is a reference to its
2432 value_type.
2433 * testsuite/25_algorithms/iter_swap/20577.cc: New.
2434
2435 2005-03-21 Zack Weinberg <zack@codesourcery.com>
2436
2437 * acinclude.m4 (GLIBCXX_CONFIGURE): Delete gcc_version logic.
2438 (GLIBCXX_EXPORT_INSTALL_INFO): Adjust quotation so ${gcc_version}
2439 is expanded by the Makefiles, not by configure.
2440 * fragment.am: Set gcc_version.
2441 * libmath/Makefile.am: Likewise.
2442 * configure, Makefile.in, include/Makefile.in, libmath/Makefile.in
2443 * libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in
2444 * testsuite/Makefile.in: Regenerate.
2445
2446 2005-03-16 Paolo Carlini <pcarlini@suse.de>
2447
2448 * testsuite/20_util/functional/binders.cc: Remove explicit
2449 instantiations for non-weak systems.
2450 * testsuite/20_util/memory/allocator/1.cc: Likewise.
2451 * testsuite/20_util/memory/allocator/10378.cc: Likewise.
2452 * testsuite/20_util/memory/allocator/10416.cc: Likewise.
2453 * testsuite/20_util/memory/allocator/8230.cc: Likewise.
2454 * testsuite/20_util/utility/rel_ops.cc: Likewise.
2455 * testsuite/22_locale/ctype/is/char/2.cc: Likewise.
2456 * testsuite/22_locale/ctype/is/wchar_t/2.cc: Likewise.
2457 * testsuite/23_containers/deque/cons/1.cc: Likewise.
2458 * testsuite/23_containers/deque/cons/2.cc: Likewise.
2459 * testsuite/23_containers/deque/invalidation/1.cc: Likewise.
2460 * testsuite/23_containers/deque/invalidation/2.cc: Likewise.
2461 * testsuite/23_containers/deque/invalidation/3.cc: Likewise.
2462 * testsuite/23_containers/deque/invalidation/4.cc: Likewise.
2463 * testsuite/23_containers/deque/modifiers/swap.cc: Likewise.
2464 * testsuite/23_containers/deque/operators/1.cc: Likewise.
2465 * testsuite/23_containers/list/capacity/1.cc: Likewise.
2466 * testsuite/23_containers/list/cons/1.cc: Likewise.
2467 * testsuite/23_containers/list/cons/2.cc: Likewise.
2468 * testsuite/23_containers/list/cons/3.cc: Likewise.
2469 * testsuite/23_containers/list/cons/4.cc: Likewise.
2470 * testsuite/23_containers/list/cons/5.cc: Likewise.
2471 * testsuite/23_containers/list/cons/6.cc: Likewise.
2472 * testsuite/23_containers/list/cons/7.cc: Likewise.
2473 * testsuite/23_containers/list/cons/8.cc: Likewise.
2474 * testsuite/23_containers/list/cons/9.cc: Likewise.
2475 * testsuite/23_containers/list/invalidation/1.cc: Likewise.
2476 * testsuite/23_containers/list/invalidation/2.cc: Likewise.
2477 * testsuite/23_containers/list/invalidation/3.cc: Likewise.
2478 * testsuite/23_containers/list/invalidation/4.cc: Likewise.
2479 * testsuite/23_containers/list/modifiers/1.cc: Likewise.
2480 * testsuite/23_containers/list/modifiers/2.cc: Likewise.
2481 * testsuite/23_containers/list/modifiers/3.cc: Likewise.
2482 * testsuite/23_containers/list/operators/1.cc: Likewise.
2483 * testsuite/23_containers/list/operators/2.cc: Likewise.
2484 * testsuite/23_containers/list/operators/3.cc: Likewise.
2485 * testsuite/23_containers/list/operators/4.cc: Likewise.
2486 * testsuite/23_containers/map/insert/1.cc: Likewise.
2487 * testsuite/23_containers/map/invalidation/1.cc: Likewise.
2488 * testsuite/23_containers/map/invalidation/2.cc: Likewise.
2489 * testsuite/23_containers/map/modifiers/swap.cc: Likewise.
2490 * testsuite/23_containers/map/operators/1.cc: Likewise.
2491 * testsuite/23_containers/multimap/invalidation/1.cc: Likewise.
2492 * testsuite/23_containers/multimap/invalidation/2.cc: Likewise.
2493 * testsuite/23_containers/multimap/modifiers/swap.cc: Likewise.
2494 * testsuite/23_containers/multiset/insert/1.cc: Likewise.
2495 * testsuite/23_containers/multiset/insert/2.cc: Likewise.
2496 * testsuite/23_containers/multiset/invalidation/1.cc: Likewise.
2497 * testsuite/23_containers/multiset/invalidation/2.cc: Likewise.
2498 * testsuite/23_containers/multiset/modifiers/swap.cc: Likewise.
2499 * testsuite/23_containers/priority_queue/members/7161.cc: Likewise.
2500 * testsuite/23_containers/queue/members/7157.cc: Likewise.
2501 * testsuite/23_containers/set/insert/1.cc: Likewise.
2502 * testsuite/23_containers/set/invalidation/1.cc: Likewise.
2503 * testsuite/23_containers/set/invalidation/2.cc: Likewise.
2504 * testsuite/23_containers/set/modifiers/swap.cc: Likewise.
2505 * testsuite/23_containers/stack/members/7158.cc: Likewise.
2506 * testsuite/23_containers/vector/bool/6886.cc: Likewise.
2507 * testsuite/23_containers/vector/capacity/1.cc: Likewise.
2508 * testsuite/23_containers/vector/capacity/8230.cc: Likewise.
2509 * testsuite/23_containers/vector/cons/1.cc: Likewise.
2510 * testsuite/23_containers/vector/cons/2.cc: Likewise.
2511 * testsuite/23_containers/vector/cons/3.cc: Likewise.
2512 * testsuite/23_containers/vector/cons/6513.cc: Likewise.
2513 * testsuite/23_containers/vector/element_access/1.cc: Likewise.
2514 * testsuite/23_containers/vector/invalidation/1.cc: Likewise.
2515 * testsuite/23_containers/vector/invalidation/2.cc: Likewise.
2516 * testsuite/23_containers/vector/invalidation/3.cc: Likewise.
2517 * testsuite/23_containers/vector/invalidation/4.cc: Likewise.
2518 * testsuite/23_containers/vector/modifiers/1.cc: Likewise.
2519 * testsuite/23_containers/vector/modifiers/2.cc: Likewise.
2520 * testsuite/23_containers/vector/modifiers/swap.cc: Likewise.
2521 * testsuite/23_containers/vector/resize/1.cc: Likewise.
2522 * testsuite/24_iterators/back_insert_iterator.cc: Likewise.
2523 * testsuite/24_iterators/front_insert_iterator.cc: Likewise.
2524 * testsuite/24_iterators/insert_iterator.cc: Likewise.
2525 * testsuite/24_iterators/iterator.cc: Likewise.
2526 * testsuite/25_algorithms/copy/1.cc: Likewise.
2527 * testsuite/25_algorithms/copy/2.cc: Likewise.
2528 * testsuite/25_algorithms/copy/3.cc: Likewise.
2529 * testsuite/25_algorithms/copy/4.cc: Likewise.
2530 * testsuite/25_algorithms/equal.cc: Likewise.
2531 * testsuite/25_algorithms/fill/1.cc: Likewise.
2532 * testsuite/25_algorithms/fill/2.cc: Likewise.
2533 * testsuite/25_algorithms/min_max.cc: Likewise.
2534 * testsuite/25_algorithms/rotate.cc: Likewise.
2535 * testsuite/25_algorithms/unique/1.cc: Likewise.
2536 * testsuite/25_algorithms/unique/2.cc: Likewise.
2537 * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: Likewise.
2538 * testsuite/ext/concept_checks.cc: Likewise.
2539 * testsuite/ext/hash_map/1.cc: Likewise.
2540 * testsuite/ext/hash_set/1.cc: Likewise.
2541 * testsuite/ext/rope/1.cc: Likewise.
2542 * testsuite/ext/rope/2.cc: Likewise.
2543 * testsuite/ext/rope/3.cc: Likewise.
2544 * testsuite/thread/pthread1.cc: Likewise.
2545 * testsuite/thread/pthread4.cc: Likewise.
2546 * testsuite/thread/pthread5.cc: Likewise.
2547 * testsuite/thread/pthread6.cc: Likewise.
2548 * testsuite/thread/pthread7-rope.cc: Likewise.
2549
2550 2005-03-15 Zack Weinberg <zack@codesourcery.com>
2551
2552 * include/Makefile.am (c++config.h): Depend on DATESTAMP from gcc
2553 subdirectory. Generate #define of __GLIBCXX__ from contents of
2554 that file.
2555 * include/Makefile.in: Regenerate.
2556 * include/bits/c++config: Do not define __GLIBCXX__.
2557
2558 2005-03-15 Paolo Carlini <pcarlini@suse.de>
2559
2560 PR libstdc++/20352
2561 * include/std/std_complex.h (pow(const complex<_Tp>&,
2562 const _Tp&)): On non-c99 platforms, don't try to compute
2563 log of complex zero.
2564
2565 2005-03-10 Ben Elliston <bje@au.ibm.com>
2566
2567 * testsuite/22_locale/locale/cons/12658_thread-1.cc: Don't XFAIL
2568 on GNU/Linux.
2569
2570 2005-03-07 Paolo Carlini <pcarlini@suse.de>
2571
2572 * include/tr1/type_traits (is_polymorphic): Don't forget
2573 the virtual destructor, thus avoiding warnings.
2574 * testsuite/testsuite_tr1.h (class AbstractClass,
2575 class PolymorphicClass): Likewise.
2576
2577 2005-03-07 Paolo Carlini <pcarlini@suse.de>
2578
2579 * include/std/std_complex.h (pow(const complex<_Tp>&,
2580 const complex<_Tp>&)): Dispatch to either __complex_pow(__x.__rep(),
2581 __y.__rep()) or __complex_pow(__x, __y) depending on the macro
2582 _GLIBCXX_USE_C99_COMPLEX.
2583
2584 2005-03-07 Paolo Carlini <pcarlini@suse.de>
2585
2586 * include/std/std_fstream.h (basic_fstream<>::open,
2587 basic_ifstream<>::open, basic_ofstream<>::open): Implement the
2588 resolution of DR 409 [Ready], call clear() on success.
2589 * docs/html/ext/howto.html: Add an entry for DR 409.
2590 * docs/html/faq/index.html (4_4): Clarify the new behavior.
2591 * testsuite/27_io/basic_ifstream/open/char/1.cc: Adjust.
2592 * testsuite/27_io/basic_ofstream/open/char/1.cc: Likewise.
2593
2594 2005-03-05 Joseph S. Myers <joseph@codesourcery.com>
2595
2596 * testsuite/22_locale/collate/compare/wchar_t/2.cc,
2597 testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc,
2598 testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc,
2599 testsuite/22_locale/collate/hash/wchar_t/2.cc,
2600 testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc,
2601 testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc,
2602 testsuite/22_locale/collate/transform/wchar_t/2.cc,
2603 testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc,
2604 testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:
2605 XFAIL on *-*-hpux11.23.
2606
2607 2005-03-04 Paolo Carlini <pcarlini@suse.de>
2608
2609 * include/tr1/type_traits: Add is_base_of.
2610 * testsuite/tr1/4_metaprogramming/relationships_between_types/
2611 is_base_of/is_base_of.cc: New.
2612 * testsuite/tr1/4_metaprogramming/relationships_between_types/
2613 is_base_of/typedefs.cc: Likewise.
2614
2615 2005-03-03 Benjamin Kosnik <bkoz@redhat.com>
2616
2617 * include/tr1/functional: Convert relative path.
2618
2619 * docs/doxygen/user.cfg.in: Add tr1 includes.
2620
2621 2005-03-03 Paolo Carlini <pcarlini@suse.de>
2622
2623 * include/tr1/type_traits: Implemenet is_polymorphic.
2624 (is_empty): Minor tweaks.
2625 * testsuite/testsuite_tr1.h: Add test types.
2626 * testsuite/tr1/4_metaprogramming/type_properties/
2627 is_polymorphic/is_polymorphic.cc: New.
2628 * testsuite/tr1/4_metaprogramming/type_properties/
2629 is_polymorphic/typedefs.cc: Likewise.
2630 * testsuite/tr1/4_metaprogramming/composite_type_traits/
2631 is_union_or_class/is_union_or_class.cc: Add tests.
2632
2633 2005-03-02 Douglas Gregor <doug.gregor@gmail.com>
2634
2635 * include/tr1/functional (_Has_result_type): Cleanup.
2636 (_Result_of_impl): Handle member data pointers correctly.
2637 (reference_wrapper): Support invocation.
2638 Move repetition code into new file include/tr1/repeat.h.
2639 * include/tr1/functional_iterate.h (reference_wrapper): Support
2640 invocation. Cleanup long lines.
2641 * include/tr1/ref_wrap_iterate.h (reference_wrapper): Declare
2642 invocation operators.
2643 * include/tr1/repeat.h: Code repetition header.
2644 * include/Makefile.am: Add ref_wrap_iterate.h, repeat.h.
2645 * include/Makefile.in: Add ref_wrap_iterate.h, repeat.h.
2646 * testsuite/tr1/3_function_objects/reference_wrapper/invoke.cc:
2647 New test of reference_wrapper invocation.
2648 * testsuite/tr1/3_function_objects/reference_wrapper/typedefs.cc:
2649 New test of reference_wrapper typedefs and base classes.
2650 * testsuite/tr1/3_function_objects/result_of.cc: Trivial cleanup
2651 (e-mail address).
2652
2653 2005-03-02 Douglas Gregor <doug.gregor@gmail.com>
2654
2655 * include/tr1/function (result_of): New class template.
2656 * include/tr1/functional/iterator.h: Implementation of TR1
2657 result_of.
2658 * testsuite/tr1/3_function_objects/result_of.cc: New test
2659
2660 2005-03-01 Vladimir Merzliakov <wanderer@rsu.ru>
2661
2662 * testsuite/26_numerics/cmath/c99_classification_macros_c.cc: Tweak.
2663
2664 2005-02-28 Benjamin Kosnik <bkoz@redhat.com>
2665
2666 * testsuite/tr1/2_general_utilities/memory/shared_ptr/
2667 cons/auto_ptr_neg.cc: Correct line numbers.
2668
2669 * testsuite/testsuite_abi.cc: Add CXXABI_1.3.1.
2670
2671 2005-02-28 Jonathan Wakely <redi@gcc.gnu.org>
2672
2673 * include/tr1/memory: Replace checked_deleter with (unchecked)
2674 _Sp_deleter as GCC warns about delete on incomplete types anyway.
2675
2676 2005-02-28 Jonathan Wakely <redi@gcc.gnu.org>
2677
2678 * include/tr1/memory: Add missing "inline" to __throw_bad_weak_ptr.
2679
2680 2005-02-28 Hans-Peter Nilsson <hp@axis.com>
2681
2682 PR target/19065
2683 * config/cpu/cris/atomicity.h (__exchange_and_add): In asm, use
2684 'Q' constraint, not 'm'.
2685
2686 2005-02-26 Earl Chew <earl_chew@agilent.com>
2687 Christopher Jefferson <chris@bubblescope.net>
2688
2689 * include/bits/stl_tree.h (_Rb_tree<>::_M_insert): Don't leak
2690 memory if _M_key_compare throws.
2691
2692 2005-02-25 Paolo Carlini <pcarlini@suse.de>
2693
2694 * include/tr1/type_traits: Add the trivial is_union and is_class;
2695 add the __is_union_or_class extension.
2696 (is_enum, is_empty): Use the latter.
2697 * include/tr1/type_traits_fwd.h: Add __is_union_or_class.
2698 * testsuite/testsuite_tr1.h: Add UnionType; trivial formatting
2699 fixes.
2700 * testsuite/tr1/4_metaprogramming/composite_type_traits/
2701 is_union_or_class/is_union_or_class.cc: New.
2702 * testsuite/tr1/4_metaprogramming/composite_type_traits/
2703 is_union_or_class/typedefs.cc: Likewise.
2704
2705 2005-02-24 Benjamin Kosnik <bkoz@redhat.com>
2706
2707 * testsuite/tr1/6_containers/unordered/instantiate/hash.cc: Guard
2708 wchar_t use with _GLIBCXX_USE_WCHAR_T.
2709
2710 2005-02-24 Benjamin Kosnik <bkoz@redhat.com>
2711
2712 * include/std/std_complex.h: _GLIBCXX_USE_C99_COMPLEX_MATH to
2713 _GLIBCXX_USE_C99_COMPLEX.
2714 * acinclude.m4: Same.
2715 * acconfig.h: Same.
2716 * configure: Regenerate.
2717 * config.h.in: Same.
2718
2719 2005-02-24 Paolo Carlini <pcarlini@suse.de>
2720
2721 * include/tr1/functional (mem_fn): Avoid _T, badname on
2722 Darwin.
2723
2724 2005-02-23 Douglas Gregor <doug.gregor@gmail.com>
2725
2726 * include/tr1/functional (function): New class template.
2727 (mem_fn): New function template.
2728 Implementations of TR1 function and mem_fn facilities.
2729 * include/tr1/functional_iterate.h: Implementations of TR1
2730 function and mem_fn facilities.
2731 * testsuite/tr1/3_function_objects/function/1.cc: New
2732 test of std::tr1::function.
2733 * testsuite/tr1/3_function_objects/function/2.cc: New
2734 test of std::tr1::function.
2735 * testsuite/tr1/3_function_objects/function/3.cc: New
2736 test of std::tr1::function.
2737 * testsuite/tr1/3_function_objects/function/4.cc: New
2738 test of std::tr1::function.
2739 * testsuite/tr1/3_function_objects/function/5.cc: New
2740 test of std::tr1::function.
2741 * testsuite/tr1/3_function_objects/function/6.cc: New
2742 test of std::tr1::function.
2743 * testsuite/tr1/3_function_objects/function/7.cc: New
2744 test of std::tr1::function.
2745 * testsuite/tr1/3_function_objects/function/8.cc: New
2746 test of std::tr1::function.
2747 * testsuite/tr1/3_function_objects/function/9.cc: New
2748 test of std::tr1::function.
2749 * testsuite/tr1/3_function_objects/mem_fn.cc: New test of
2750 std::tr1::mem_fn.
2751
2752 2005-02-23 Paolo Carlini <pcarlini@suse.de>
2753
2754 * include/tr1/type_traits: Implement is_convertible.
2755 * testsuite/tr1/4_metaprogramming/relationships_between_types/
2756 is_convertible/is_convertible.cc: New.
2757 * testsuite/tr1/4_metaprogramming/relationships_between_types/
2758 is_convertible/typedefs.cc: Likewise.
2759 * testsuite/testsuite_tr1.h: Add class DerivedType.
2760
2761 * include/tr1/type_traits (is_function): Don't mistake references
2762 to function types for function types.
2763 * testsuite/tr1/4_metaprogramming/primary_type_categories/
2764 is_function/is_function.cc: Add testcase.
2765
2766 2005-02-22 Benjamin Kosnik <bkoz@redhat.com>
2767
2768 * scripts/check_performance: Tweaks.
2769
2770 * testsuite/27_io/basic_ostream/inserters_other/wchar_t/2.cc: Name
2771 output file with extension that clean rules can find.
2772
2773 2005-02-22 Richard Henderson <rth@redhat.com>
2774
2775 PR libstdc++/20091
2776 * libsupc++/eh_catch.cc (__cxa_begin_catch): Don't special case
2777 decrement of uncaughtExceptions for rethrow.
2778
2779 2005-02-22 Paolo Carlini <pcarlini@suse.de>
2780
2781 * include/tr1/functional: Fix License to GPL with exception.
2782 * include/tr1/hashtable: Likewise.
2783 * include/tr1/tuple: Likewise.
2784 * include/tr1/type_traits: Likewise.
2785 * include/tr1/type_traits_fwd.h: Likewise.
2786 * include/tr1/unordered_map: Likewise.
2787 * include/tr1/unordered_set: Likewise.
2788 * include/tr1/utility: Likewise.
2789
2790 2005-02-22 Paolo Carlini <pcarlini@suse.de>
2791
2792 * testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
2793 auto_ptr_neg.cc: Add missing dg-do compile directive.
2794 * testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
2795 auto_ptr_rvalue_neg.cc: Likewise.
2796 * testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
2797 shared_ptr_neg.cc: Likewise.
2798 * testsuite/tr1/2_general_utilities/memory/shared_ptr/cons/
2799 auto_ptr_neg.cc: Likewise.
2800 * testsuite/tr1/2_general_utilities/memory/shared_ptr/modifiers/
2801 reset_neg.cc: Likewise.
2802 * testsuite/tr1/2_general_utilities/memory/shared_ptr/modifiers/
2803 swap_neg.cc: Likewise.
2804
2805 2005-02-22 Jonathan Wakely <redi@gcc.gnu.org>
2806
2807 * include/Makefile.am, include/Makefile.in: Fix accidental extra
2808 change from previous commit.
2809
2810 2005-02-21 Jonathan Wakely <redi@gcc.gnu.org>
2811
2812 * include/tr1/memory: New file.
2813 * include/Makefile.am, include/Makefile.in: Add new TR1 header.
2814 * testsuite/tr1/2_general_utilities/memory/
2815 enable_shared_from_this/not_shared.cc: New test.
2816 * testsuite/tr1/2_general_utilities/memory/
2817 enable_shared_from_this/not_shared2.cc: New test.
2818 * testsuite/tr1/2_general_utilities/memory/
2819 enable_shared_from_this/not_shared3.cc: New test.
2820 * testsuite/tr1/2_general_utilities/memory/
2821 enable_shared_from_this/shared.cc: New test.
2822 * testsuite/tr1/2_general_utilities/memory/
2823 enable_shared_from_this/still_shared.cc: New test.
2824 * testsuite/tr1/2_general_utilities/memory/
2825 shared_ptr/assign/assign.cc: New test.
2826 * testsuite/tr1/2_general_utilities/memory/
2827 shared_ptr/assign/auto_ptr.cc: New test.
2828 * testsuite/tr1/2_general_utilities/memory/
2829 shared_ptr/assign/auto_ptr_neg.cc: New test.
2830 * testsuite/tr1/2_general_utilities/memory/
2831 shared_ptr/assign/auto_ptr_rvalue_neg.cc: New test.
2832 * testsuite/tr1/2_general_utilities/memory/
2833 shared_ptr/assign/shared_ptr.cc: New test.
2834 * testsuite/tr1/2_general_utilities/memory/
2835 shared_ptr/assign/shared_ptr_neg.cc: New test.
2836 * testsuite/tr1/2_general_utilities/memory/
2837 shared_ptr/comparison/cmp.cc: New test.
2838 * testsuite/tr1/2_general_utilities/memory/
2839 shared_ptr/cons/auto_ptr.cc: New test.
2840 * testsuite/tr1/2_general_utilities/memory/
2841 shared_ptr/cons/auto_ptr_neg.cc: New test.
2842 * testsuite/tr1/2_general_utilities/memory/
2843 shared_ptr/cons/copy.cc: New test.
2844 * testsuite/tr1/2_general_utilities/memory/
2845 shared_ptr/cons/default.cc: New test.
2846 * testsuite/tr1/2_general_utilities/memory/
2847 shared_ptr/cons/pointer.cc: New test.
2848 * testsuite/tr1/2_general_utilities/memory/
2849 shared_ptr/cons/weak_ptr.cc: New test.
2850 * testsuite/tr1/2_general_utilities/memory/
2851 shared_ptr/cons/weak_ptr_expired.cc: New test.
2852 * testsuite/tr1/2_general_utilities/memory/
2853 shared_ptr/dest/dest.cc: New test.
2854 * testsuite/tr1/2_general_utilities/memory/
2855 shared_ptr/misc/io.cc: New test.
2856 * testsuite/tr1/2_general_utilities/memory/
2857 shared_ptr/misc/swap.cc: New test.
2858 * testsuite/tr1/2_general_utilities/memory/
2859 shared_ptr/modifiers/reset.cc: New test.
2860 * testsuite/tr1/2_general_utilities/memory/
2861 shared_ptr/modifiers/reset_neg.cc: New test.
2862 * testsuite/tr1/2_general_utilities/memory/
2863 shared_ptr/modifiers/swap.cc: New test.
2864 * testsuite/tr1/2_general_utilities/memory/
2865 shared_ptr/modifiers/swap_neg.cc: New test.
2866 * testsuite/tr1/2_general_utilities/memory/
2867 shared_ptr/observers/bool_conv.cc: New test.
2868 * testsuite/tr1/2_general_utilities/memory/
2869 shared_ptr/observers/get.cc: New test.
2870 * testsuite/tr1/2_general_utilities/memory/
2871 shared_ptr/observers/unique.cc: New test.
2872 * testsuite/tr1/2_general_utilities/memory/
2873 shared_ptr/observers/use_count.cc: New test.
2874
2875 2005-02-21 Paolo Carlini <pcarlini@suse.de>
2876
2877 * include/tr1/type_traits (is_member_function_pointer):
2878 Remove ugly workaround for c++/19076.
2879
2880 2005-02-21 Paolo Carlini <pcarlini@suse.de>
2881
2882 * include/bits/basic_string.tcc (_Rep::_M_destroy): Don't
2883 check for this == &_S_empty_rep, it's always false, here.
2884
2885 2005-02-19 Matt Austern <austern@gmail.com>
2886
2887 * include/tr1/functional (tr1_hashtable_define_trivial_hash): Make
2888 hash<T>::operator() a const member function for T a fundamental type
2889 * include/tr1/hashtable (extract1st::operator()): Declare const.
2890 (hash_code_base): Declare all member functions const
2891 (hashtable::find): fix call to this->bucket_count()
2892 (hashtable::count): Likewise.
2893 (hashtable::equal_range): m_incr_bucket applies to iterator, not node.
2894 * testsuite/tr1/6_containers/unordered/find/set1.cc: New test.
2895 * testsuite/tr1/6_containers/unordered/find/map1.cc: New test.
2896 * testsuite/tr1/6_containers/unordered/find/multimap1.cc: New test.
2897 * testsuite/tr1/6_containers/unordered/find/multiset1.cc: New test.
2898
2899 2005-02-19 Hans-Peter Nilsson <hp@axis.com>
2900
2901 PR libstdc++/20071
2902 * include/tr1/functional (hash<std::wstring>): Wrap in #ifdef
2903 _GLIBCXX_USE_WCHAR_T.
2904
2905 2005-02-18 Richard Henderson <rth@redhat.com>
2906
2907 PR libstdc++/10606
2908 * config/linker-map.gnu (CXXABI_1.3.1): Add __cxa_get_exception_ptr.
2909 * libsupc++/eh_alloc.cc (__cxa_allocate_exception): Increment
2910 uncaughtExceptions here instead of ...
2911 * libsupc++/eh_throw.cc (__cxa_throw) ... here.
2912 (__cxa_rethrow): Increment uncaughtExceptions here instead of ...
2913 * libsupc++/eh_catch.cc (__cxa_end_catch): ... here.
2914 (__cxa_get_exception_ptr): New.
2915 * libsupc++/unwind-cxx.h (__cxa_get_exception_ptr): Declare.
2916
2917 2005-02-18 Matt Austern <austern@apple.com>
2918
2919 * testsuite/tr1/6_containers/unordered/insert/array_syntax.cc: Fix
2920 test case to use assignment instead of ==
2921 * testsuite/tr1/6_containers/unordered/insert/map_range.cc: New test.
2922 * testsuite/tr1/6_containers/unordered/insert/multimap_range.cc: New test.
2923 * testsuite/tr1/6_containers/unordered/insert/multiset_range.cc: New test.
2924 * testsuite/tr1/6_containers/unordered/insert/set_range.cc: New test.
2925
2926 2005-02-18 Eric Botcazou <ebotcazou@libertysurf.fr>
2927
2928 * testsuite/thread/pthread1.cc: Do not invoke pthread_setconcurrency
2929 on Solaris 2.6 and below.
2930 * testsuite/thread/pthread2.cc: Likewise.
2931 * testsuite/thread/pthread3.cc: Likewise.
2932 * testsuite/thread/pthread4.cc: Likewise.
2933 * testsuite/thread/pthread5.cc: Likewise.
2934 * testsuite/thread/pthread6.cc: Likewise.
2935 * testsuite/thread/pthread7-rope.cc: Likewise.
2936
2937 2005-02-17 Matt Austern <austern@apple.com>
2938
2939 * include/tr1/functional (hash): New function object.
2940 * include/tr1/hashtable: New file.
2941 * include/tr1/unordered_set: New file.
2942 * include/tr1/unordered_map: New file.
2943 * include/Makefile.am: Add three new TR1 headers.
2944 * include/Makefile.in: Likewise.
2945 * testsuite/tr1/6_containers/unordered/insert/array_syntax.cc: New test.
2946 * testsuite/tr1/6_containers/unordered/insert/map_single.cc: New test.
2947 * testsuite/tr1/6_containers/unordered/insert/multimap_single.cc: New test.
2948 * testsuite/tr1/6_containers/unordered/insert/multiset_single.cc: New test.
2949 * testsuite/tr1/6_containers/unordered/insert/set_single.cc: New test.
2950 * testsuite/tr1/6_containers/unordered/instantiate/hash.cc: New test.
2951 * testsuite/tr1/6_containers/unordered/instantiate/map.cc: New test.
2952 * testsuite/tr1/6_containers/unordered/instantiate/multimap.cc: New test.
2953 * testsuite/tr1/6_containers/unordered/instantiate/multiset.cc: New test.
2954 * testsuite/tr1/6_containers/unordered/instantiate/set.cc: New test.
2955
2956 2005-02-16 Paolo Carlini <pcarlini@suse.de>
2957
2958 * testsuite/23_containers/set/modifiers/16728.cc:
2959 Remove redundant include <testsuite_performance.h>.
2960
2961 2005-02-16 Paolo Carlini <pcarlini@suse.de>
2962
2963 PR libstdc++/19829
2964 * testsuite/21_strings/basic_string/find/char/3.cc: Fix the test
2965 at line #66 to not access str_lit01 beyond its end.
2966 * testsuite/21_strings/basic_string/find/wchar_t/3.cc: Likewise.
2967
2968 2005-02-15 Paolo Carlini <pcarlini@suse.de>
2969 Jon Grimm <jgrimm2@us.ibm.com>
2970
2971 PR libstdc++/19955
2972 * include/bits/locale_facets.h (ctype<char>::_M_narrow_init()):
2973 Fix the logic setting _M_narrow_ok: first check whether the
2974 transformation is trivial with a dflt == 0, then deal with the
2975 special case of zero.
2976 * testsuite/22_locale/ctype/narrow/char/19955.cc: New.
2977
2978 * include/bits/locale_facets.h (ctype<char>::_M_widen_init()):
2979 Tweak consistently to use memcmp; minor formatting fixes.
2980
2981 2005-02-15 Jakub Jelinek <jakub@redhat.com>
2982
2983 PR libstdc++/19946
2984 * testsuite/demangle/abi_examples/01.cc (main): Adjust for 2005-02-13
2985 demangler change.
2986 * testsuite/demangle/abi_examples/02.cc (main): Likewise.
2987
2988 2005-02-13 Richard Guenther <rguenth@gcc.gnu.org>
2989 Paolo Carlini <pcarlini@suse.de>
2990
2991 PR libstdc++/11706
2992 * include/c_std/std_cmath.h (pow): Use __builtin_powi[lf]
2993 for integer overloads.
2994
2995 * testsuite/26_numerics/cmath/powi.cc: New.
2996
2997 2005-02-11 Janis Johnson <janis187@us.ibm.com>
2998
2999 * testsuite/26_numerics/complex/13450.cc: Fix XFAIL selector.
3000 * testsuite/26_numerics/complex/complex_value.cc: Ditto.
3001 * testsuite/26_numerics/complex/pow.cc: Ditto.
3002
3003 * testsuite/lib/libstdc++.exp: Load target-supports-dg.exp.
3004 * testsuite/26_numerics/complex/13450.cc: XFAIL for broken_cplxf_arg.
3005 * testsuite/26_numerics/complex/complex_value.cc: Ditto.
3006 * testsuite/26_numerics/complex/pow.cc: Ditto.
3007
3008 2005-02-09 Mike Stump <mrs@apple.com>
3009
3010 * libsupc++/del_op.cc: Don't include cstdlib when !_GLIBCXX_HOSTED.
3011
3012 2005-02-09 Janis Johnson <janis187@us.ibm.com>
3013
3014 * testsuite/ext/array_allocator/2.cc: XFAIL for powerpc*-*-linux*.
3015
3016 2005-02-08 Mark Mitchell <mark@codesourcery.com>
3017
3018 * config/linker-map.gnu (GLIBCXX_3.4): Add _ZNSdC* and _ZNSdD*.
3019
3020 2005-02-07 Loren J. Rittle <ljrittle@acm.org>
3021
3022 * testsuite/27_io/basic_istream/getline/wchar_t/5.cc: Make buf static.
3023 * testsuite/27_io/basic_stringbuf/setbuf/wchar_t/4.cc: Make ref and
3024 src static.
3025
3026 2005-02-02 Brad Spencer <spencer@infointeractive.com>
3027
3028 * debug.html: Fix broken tags.
3029 * documentation.html: Same.
3030
3031 2005-02-02 Andreas Jaeger <aj@suse.de>
3032
3033 * testsuite/lib/libstdc++.exp: Revert Geoffrey Keating's patch
3034 from 2005-01-28.
3035 * testsuite/Makefile.am: Likewise.
3036 * testsuite/Makefile.in: Likewise.
3037
3038 2005-02-01 Paolo Carlini <pcarlini@suse.de>
3039
3040 * include/bits/cpp_type_traits.h: Rename _M_type fields to
3041 __value, except for __enable_if, _M_type -> __type, consistently
3042 with the other traits.
3043 * include/bits/stl_algobase.h: Tweak consistently.
3044 * include/bits/stl_tree.h: Likewise.
3045 * include/bits/valarray_array.h: Likewise.
3046 * include/c_std/std_cmath.h: Likewise.
3047 * include/debug/safe_iterator.h: Likewise.
3048 * include/std/std_complex.h: Likewise.
3049
3050 2005-01-31 Brad Spencer <spencer@infointeractive.com>
3051
3052 * crossconfig.m4: Repair Solaris cross bits for strtold and strtof.
3053 * configure: Regenerated.
3054
3055 2005-01-31 Mark Mitchell <mark@codesourcery.com>
3056
3057 * include/std/std_limits.h (numeric_limits<float>::has_denorm):
3058 Add required cast.
3059 (numeric_limits<double>::has_denorm): Likewise.
3060 (numeric_limits<long double>::has_denorm): Likewise.
3061
3062 2005-01-31 Paolo Carlini <pcarlini@suse.de>
3063 Gabriel Dos Reis <gdr@integrable-solutions.net>
3064
3065 * include/bits/cpp_type_traits.h: Add types to the structs thus
3066 making type_traits.h redundant; exploit new __truth_type and
3067 __traitor helpers.
3068 * include/bits/type_traits.h: Remove.
3069 * include/Makefile.am: Update.
3070 * include/Makefile.in: Regenerate.
3071 * include/backward/tempbuf.h: Include cpp_type_traits.h instead.
3072 * include/bits/basic_string.h (replace(iterator, iterator,
3073 _InputIterator, _InputIterator), _S_construct(_InIterator,
3074 _InIterator, const _Alloc&)): Use __is_integer instead.
3075 * include/bits/stl_bvector.h (vector(_InputIterator,
3076 _InputIterator, const allocator_type&), assign(_InputIterator,
3077 _InputIterator), insert(iterator, _InputIterator, _InputIterator)):
3078 Likewise.
3079 * include/bits/stl_construct.h (_Destroy(_ForwardIterator,
3080 _ForwardIterator)): Use __is_scalar.
3081 * include/bits/stl_deque.h (deque(_InputIterator, _InputIterator,
3082 const allocator_type&), assign(_InputIterator, _InputIterator),
3083 insert(iterator, _InputIterator, _InputIterator)): Use __is_integer.
3084 * include/bits/stl_list.h (assign(_InputIterator, _InputIterator),
3085 insert(iterator, _InputIterator, _InputIterator)): Likewise.
3086 * include/bits/stl_tempbuf.h (_Temporary_buffer(_ForwardIterator,
3087 _ForwardIterator)): Use __is_scalar.
3088 * include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator,
3089 _InputIterator, _ForwardIterator), uninitialized_fill(_ForwardIterator,
3090 _ForwardIterator, const _Tp&), uninitialized_fill_n(_ForwardIterator,
3091 _Size, const _Tp&)): Likewise.
3092 * include/bits/stl_vector.h (vector(_InputIterator, _InputIterator,
3093 const allocator_type&), assign(_InputIterator, _InputIterator),
3094 insert(iterator, _InputIterator, _InputIterator)): Use __is_integer.
3095 * include/debug/debug.h (__valid_range(const _InputIterator&,
3096 const _InputIterator&)): Use __is_integer.
3097 * include/ext/slist (assign(_InputIterator, _InputIterator)): Likewise.
3098 * include/std/std_string.h: Include cpp_type_traits.h instead.
3099
3100 2005-01-30 Paolo Carlini <pcarlini@suse.de>
3101
3102 PR libstdc++/19642
3103 * config/locale/generic/c_locale.h (__convert_from_v): Switch only
3104 LC_NUMERIC, and only when actually != "C".
3105
3106 2005-01-28 Paolo Carlini <pcarlini@suse.de>
3107
3108 * include/tr1/type_traits (is_function): Minor consistency tweaks.
3109
3110 2005-01-28 Geoffrey Keating <geoffk@apple.com>
3111
3112 * testsuite/lib/libstdc++.exp (libstdc++_init): Search the path
3113 for the compiler. Don't set cxxflags.
3114 (v3_target_compile): Search for libv3test.a relative to $objdir.
3115 (lsearch_all_inline): New.
3116 (lsearch_all_inline_not): New.
3117 (v3-list-tests): Rewrite to not need generated files.
3118 * testsuite/Makefile.am (IGNORE_WCHAR_T): New.
3119 (IGNORE_THREAD): New.
3120 (TESTS_TO_IGNORE): New.
3121 (site.exp): Set tests_to_ignore, cxxflags.
3122 * aclocal.m4: Regenerate.
3123 * Makefile.in: Regenerate.
3124 * libmath/Makefile.in: Likewise.
3125 * libsupc++/Makefile.in: Likewise.
3126 * po/Makefile.in: Likewise.
3127 * src/Makefile.in: Likewise.
3128 * testsuite/Makefile.in: Likewise.
3129
3130 2005-01-28 Paolo Carlini <pcarlini@suse.de>
3131
3132 * include/tr1/type_traits: Implement is_empty.
3133 * testsuite/tr1/4_metaprogramming/type_properties/is_empty/
3134 is_empty.cc: New.
3135 * testsuite/tr1/4_metaprogramming/type_properties/is_empty/
3136 typedefs.cc: Likewise.
3137
3138 * include/tr1/type_traits (__is_abstract_helper): Simplify a bit.
3139
3140 2005-01-28 Paolo Carlini <pcarlini@suse.de>
3141
3142 * include/tr1/type_traits: Implement is_abstract, by exploiting the
3143 resolution of DR core/337.
3144 * testsuite/testsuite_tr1.h: Add AbstractClass.
3145 * testsuite/tr1/4_metaprogramming/type_properties/is_abstract/
3146 is_abstract.cc: New.
3147 * testsuite/tr1/4_metaprogramming/type_properties/is_abstract/
3148 typedefs.cc: Likewise.
3149
3150 * include/tr1/type_traits (is_function): Rewrite, use the conversion
3151 F& -> F* instead, thus avoiding problems with abstract classes.
3152 * testsuite/tr1/4_metaprogramming/primary_type_categories/
3153 is_function/is_function.cc: Add a test for tricky AbstractClass.
3154
3155 2005-01-26 Paolo Carlini <pcarlini@suse.de>
3156
3157 * include/ext/mt_allocator.h
3158 (struct __per_type_pool_policy<,, false>::_S_get_pool,
3159 struct __per_type_pool_policy<,, true>::_S_get_pool): Scale
3160 _M_chunk_size too with sizeof(_Tp), otherwise the allocator
3161 breaks down as soon as sizeof(_Tp) >~ _S_chunk_size / 128;
3162 reduce to 64 the multiplier for _M_max_bytes (safer wrt
3163 _Binmap_type being a short); trivial reformattings.
3164 * testsuite/ext/mt_allocator/check_allocate_big_per_type.cc: New.
3165
3166 2005-01-26 Paolo Carlini <pcarlini@suse.de>
3167
3168 * acinclude.m4 ([GLIBCXX_ENABLE_C99]): Add ac_c99_complex
3169 to the final test for enable_c99, thus robustifying it; remove
3170 duplicate final test on ac_99_math.
3171 * configure: Regenerate.
3172
3173 * include/std/std_complex.h: Remove usages of the dead
3174 _GLIBCXX_BUGGY_COMPLEX macro.
3175
3176 * testsuite/26_numerics/cmath/19322.cc: Protect with
3177 _GLIBCXX_USE_C99_MATH instead of the stronger _GLIBCXX_USE_C99,
3178 since only C99 math facilities are involved.
3179 * testsuite/26_numerics/cmath/c99_classification_macros_c++.cc:
3180 Likewise.
3181
3182 2005-01-25 Loren J. Rittle <ljrittle@acm.org>
3183
3184 * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Map FreeBSD to darwin
3185 instead of generic. Change autoconf report to "darwin or freebsd".
3186 * configure: Regenerate.
3187 * config/os/bsd/freebsd/ctype_inline.h (ctype<wchar_t>::do_is): Add.
3188 (ctype<wchar_t>::do_scan_is): Likewise.
3189 (ctype<wchar_t>::do_scan_not): Likewise.
3190
3191 2005-01-25 Benjamin Kosnik <bkoz@redhat.com>
3192
3193 * acinclude.m4 (GLIBCXX_ENABLE_C99): Test for complex math
3194 functions, and enable _GLIBCXX_USE_C99_COMPLEX_MATH if they exist.
3195 * acconfig.h: Add _GLIBCXX_USE_C99_COMPLEX_MATH.
3196 * config.h.in: Regenerate.
3197 * configure: Regenerate.
3198 * include/std/std_complex.h: Protect complex builtins with
3199 _GLIBCXX_USE_C99_COMPLEX_MATH.
3200
3201 2005-01-24 Paolo Carlini <pcarlini@suse.de>
3202
3203 * include/tr1/type_traits: Implement is_signed and is_unsigned.
3204 * testsuite/tr1/4_metaprogramming/type_properties/
3205 is_signed/is_signed.cc: New.
3206 * testsuite/tr1/4_metaprogramming/type_properties/
3207 is_signed/typedefs.cc: Likewise.
3208 * testsuite/tr1/4_metaprogramming/type_properties/
3209 is_unsigned/is_unsigned.cc: Likewise.
3210 * testsuite/tr1/4_metaprogramming/type_properties/
3211 is_unsigned/typedefs.cc: Likewise.
3212
3213 2005-01-23 Paolo Carlini <pcarlini@suse.de>
3214
3215 * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 34.
3216
3217 2005-01-23 Paolo Carlini <pcarlini@suse.de>
3218
3219 * testsuite/27_io/basic_ostream/cons/wchar_t/9827.cc: New.
3220 * testsuite/27_io/basic_ostream/endl/wchar_t/1.cc: Likewise.
3221 * testsuite/27_io/basic_ostream/ends/wchar_t/1.cc: Likewise.
3222 * testsuite/27_io/basic_ostream/ends/wchar_t/2.cc: Likewise.
3223 * testsuite/27_io/basic_ostream/exceptions/wchar_t/9561.cc: Likewise.
3224 * testsuite/27_io/basic_ostream/flush/wchar_t/1.cc: Likewise.
3225 * testsuite/27_io/basic_ostream/flush/wchar_t/2.cc: Likewise.
3226 * testsuite/27_io/basic_ostream/flush/wchar_t/
3227 exceptions_badbit_throw.cc: Likewise.
3228 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3229 wchar_t/2.cc: Likewise.
3230 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3231 wchar_t/3.cc: Likewise.
3232 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3233 wchar_t/4.cc: Likewise.
3234 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3235 wchar_t/4402.cc: Likewise.
3236 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3237 wchar_t/5.cc: Likewise.
3238 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3239 wchar_t/6.cc: Likewise.
3240 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3241 wchar_t/9555-oa.cc: Likewise.
3242 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3243 wchar_t/exceptions_badbit_throw.cc: Likewise.
3244 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3245 wchar_t/exceptions_failbit_throw.cc: Likewise.
3246 * testsuite/27_io/basic_ostream/inserters_character/
3247 wchar_t/1.cc: Likewise.
3248 * testsuite/27_io/basic_ostream/inserters_character/
3249 wchar_t/2.cc: Likewise.
3250 * testsuite/27_io/basic_ostream/inserters_character/
3251 wchar_t/3.cc: Likewise.
3252 * testsuite/27_io/basic_ostream/inserters_character/
3253 wchar_t/4.cc: Likewise.
3254 * testsuite/27_io/basic_ostream/inserters_character/
3255 wchar_t/5.cc: Likewise.
3256 * testsuite/27_io/basic_ostream/inserters_character/
3257 wchar_t/6.cc: Likewise.
3258 * testsuite/27_io/basic_ostream/inserters_character/
3259 wchar_t/9555-oc.cc: Likewise.
3260 * testsuite/27_io/basic_ostream/inserters_other/
3261 wchar_t/1.cc: Likewise.
3262 * testsuite/27_io/basic_ostream/inserters_other/
3263 wchar_t/2.cc: Likewise.
3264 * testsuite/27_io/basic_ostream/inserters_other/
3265 wchar_t/3.cc: Likewise.
3266 * testsuite/27_io/basic_ostream/inserters_other/
3267 wchar_t/4.cc: Likewise.
3268 * testsuite/27_io/basic_ostream/inserters_other/
3269 wchar_t/5.cc: Likewise.
3270 * testsuite/27_io/basic_ostream/inserters_other/
3271 wchar_t/9318-out.cc: Likewise.
3272 * testsuite/27_io/basic_ostream/inserters_other/
3273 wchar_t/9424-out.cc: Likewise.
3274 * testsuite/27_io/basic_ostream/inserters_other/
3275 wchar_t/9555-oo.cc: Likewise.
3276 * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3277 error_failbit.cc: Likewise.
3278 * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3279 exceptions_badbit_throw.cc: Likewise.
3280 * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3281 exceptions_failbit_throw.cc: Likewise.
3282 * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3283 exceptions_null.cc: Likewise.
3284 * testsuite/27_io/basic_ostream/put/char/1.cc: Likewise.
3285 * testsuite/27_io/basic_ostream/put/wchar_t/1.cc: Likewise.
3286 * testsuite/27_io/basic_ostream/seekp/char/
3287 exceptions_badbit_throw.cc: Likewise.
3288 * testsuite/27_io/basic_ostream/seekp/wchar_t/
3289 2346-fstream.cc: Likewise.
3290 * testsuite/27_io/basic_ostream/seekp/wchar_t/
3291 2346-sstream.cc: Likewise.
3292 * testsuite/27_io/basic_ostream/seekp/wchar_t/
3293 exceptions_badbit_throw.cc: Likewise.
3294 * testsuite/27_io/basic_ostream/sentry/wchar_t/1.cc: Likewise.
3295 * testsuite/27_io/basic_ostream/sentry/wchar_t/2.cc: Likewise.
3296 * testsuite/27_io/basic_ostream/tellp/wchar_t/1.cc: Likewise.
3297 * testsuite/27_io/basic_ostream/tellp/wchar_t/2.cc: Likewise.
3298 * testsuite/27_io/basic_ostream/tellp/wchar_t/
3299 exceptions_badbit_throw.cc: Likewise.
3300 * testsuite/27_io/basic_ostream/write/wchar_t/1.cc: Likewise.
3301
3302 * testsuite/data/wostream_inserter_char-1.tst: Likewise.
3303 * testsuite/data/wostream_inserter_char-1.txt: Likewise.
3304 * testsuite/data/wostream_inserter_other-1.tst: Likewise.
3305 * testsuite/data/wostream_inserter_other-2.tst: Likewise.
3306 * testsuite/data/wostream_seeks-1.tst: Likewise.
3307
3308 * testsuite/27_io/basic_ostream/endl/char/1.cc: Minor tweaks.
3309 * testsuite/27_io/basic_ostream/ends/char/1.cc: Likewise.
3310 * testsuite/27_io/basic_ostream/exceptions/char/9561.cc: Likewise.
3311 * testsuite/27_io/basic_ostream/flush/char/1.cc: Likewise.
3312 * testsuite/27_io/basic_ostream/flush/char/2.cc: Likewise.
3313 * testsuite/27_io/basic_ostream/flush/char/
3314 exceptions_badbit_throw.cc: Likewise.
3315 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3316 char/2.cc: Likewise.
3317 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3318 char/3.cc: Likewise.
3319 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3320 char/4.cc: Likewise.
3321 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3322 char/4402.cc: Likewise.
3323 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3324 char/5.cc: Likewise.
3325 * testsuite/27_io/basic_ostream/inserters_arithmetic/
3326 char/6.cc: Likewise.
3327 * testsuite/27_io/basic_ostream/inserters_character/
3328 char/4.cc: Likewise.
3329 * testsuite/27_io/basic_ostream/inserters_other/char/
3330 2.cc: Likewise.
3331 * testsuite/27_io/basic_ostream/inserters_other/char/
3332 5.cc: Likewise.
3333 * testsuite/27_io/basic_ostream/inserters_other/char/
3334 error_failbit.cc: Likewise.
3335 * testsuite/27_io/basic_ostream/inserters_other/char/
3336 exceptions_badbit_throw.cc: Likewise.
3337 * testsuite/27_io/basic_ostream/inserters_other/char/
3338 exceptions_failbit_throw.cc: Likewise.
3339 * testsuite/27_io/basic_ostream/inserters_other/char/
3340 exceptions_null.cc: Likewise.
3341 * testsuite/27_io/basic_ostream/put/char/1.cc: Likewise.
3342 * testsuite/27_io/basic_ostream/seekp/char/
3343 exceptions_badbit_throw.cc: Likewise.
3344 * testsuite/27_io/basic_ostream/sentry/char/2.cc: Likewise.
3345 * testsuite/27_io/basic_ostream/write/char/1.cc: Likewise.
3346
3347 2005-01-23 Paolo Carlini <pcarlini@suse.de>
3348
3349 * include/tr1/type_traits (aligned_storage): Use __aligned__ instead
3350 of aligned.
3351
3352 2005-01-23 Paolo Carlini <pcarlini@suse.de>
3353 Andreas Jaeger <aj@suse.de>
3354
3355 PR libstdc++/19343
3356 * include/bits/functexcept.h: Mark the helpers as 'noreturn'.
3357
3358 2005-01-21 Loren J. Rittle <ljrittle@acm.org>
3359
3360 * testsuite/27_io/basic_filebuf/open/char/9507.cc: Allow
3361 lseek on fifo to succeed. Thus, check for consistent report.
3362
3363 2005-01-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3364
3365 PR libstdc++/19510
3366 * include/bits/stl_list.h (_List_iterator): Initialize _M_node
3367 in constructor.
3368 (_List_const_iterator): Likewise.
3369 * include/bits/stl_tree.h (_Rb_tree_iterator): Likewise.
3370 (_Rb_tree_const_iterator): Likewise.
3371
3372 * testsuite/23_containers/map/operators/1_neg.cc: Adjust line numbers.
3373 * testsuite/23_containers/set/operators/1_neg.cc: Likewise.
3374
3375 2005-01-20 Benjamin Kosnik <bkoz@redhat.com>
3376
3377 * testsuite/Makefile.am (check-compile): New.
3378 * testsuite/Makefile.in: Regenerate.
3379 * scripts/check_compile_time: New.
3380 * scripts/check_performance: Tweaks.
3381
3382 2005-01-19 Paolo Carlini <pcarlini@suse.de>
3383
3384 PR libstdc++/19535
3385 * include/tr1/utility (struct __pair_get<1>::__get, __const_get):
3386 Fix typo in the return type.
3387 * testsuite/tr1/6_containers/utility/19535.cc: New.
3388
3389 2005-01-19 Loren J. Rittle <ljrittle@acm.org>
3390
3391 * include/ext/array_allocator.h (array_allocator<>::allocate):
3392 Avoid __used. Use __array_used instead.
3393 * docs/html/17_intro/BADNAMES: Add list for FreeBSD.
3394
3395 2005-01-18 David Edelsohn <edelsohn@gnu.org>
3396
3397 * config/os/aix/os_defines.h (_XOPEN_SOURCE): Delete.
3398 (_XOPEN_SOURCE_EXTENDED): Delete.
3399
3400 2005-01-18 Benjamin Kosnik <bkoz@redhat.com>
3401
3402 * testsuite/testsuite_performance.h (time_counter::start):
3403 Clear. Tweaks.
3404 (clear_counters): Inline.
3405 (start_counters): Inline.
3406 (stop_counters): Inline.
3407 * testsuite/performance/20_util/allocator/map_thread.cc: Return.
3408 * testsuite/performance/20_util/allocator/insert.cc: Remove bogus
3409 return, add return.
3410 * testsuite/performance/20_util/allocator/map_thread.cc: Same.
3411
3412 2005-01-17 Paolo Carlini <pcarlini@suse.de>
3413
3414 PR libstdc++/19433
3415 * include/bits/stl_tree.h (_Rb_tree<>::insert_unique(iterator,
3416 const _Val&), _Rb_tree<>::insert_equal(iterator, const _Val&)):
3417 Obtain amortized constant complexity if t is inserted right after
3418 p - not before p - as per Table 69.
3419 * testsuite/performance/23_containers/set_insert_from_sorted.cc: New.
3420
3421 * testsuite/23_containers/multiset/insert/2.cc: New.
3422 * testsuite/23_containers/set/insert/1.cc: Likewise.
3423
3424 * testsuite/performance/23_containers/set_create_from_sorted.cc:
3425 Simplify.
3426
3427 * include/bits/stl_tree.h: Add a few missing std:: qualifications.
3428
3429 2005-01-16 Jonathan Wakely <redi@gcc.gnu.org>
3430
3431 * include/ext/rope: Qualify calls to std::copy() by sequence_buffer.
3432 * testsuite/ext/rope/4.cc: Add.
3433
3434 2005-01-16 Lorenz Minder <lminder@gmx.net>
3435 Paolo Carlini <pcarlini@suse.de>
3436
3437 PR libstdc++/19322
3438 * include/c_std/std_cmath.h: Define the C99 classification facilities
3439 directly inside namespace std:.
3440 * testsuite/26_numerics/cmath/19322.cc: New.
3441
3442 2005-01-15 David Edelsohn <edelsohn@gnu.org>
3443
3444 * config/os/aix/os_defines.h (_G_USING_THUNKS): Delete.
3445
3446 2005-01-14 Paolo Carlini <pcarlini@suse.de>
3447
3448 PR libstdc++/19422
3449 * include/bits/stl_tree.h (_Rb_tree<>::insert_equal(_II, _II),
3450 _Rb_tree<>::insert_unique(_II, _II)): Use insert_equal (insert_unique,
3451 respectively) with hint (end()).
3452 * testsuite/performance/23_containers/set_create_from_sorted.cc: New.
3453
3454 2005-01-13 Geoffrey Keating <geoffk@apple.com>
3455
3456 * configure.host (darwin): On darwin8 or later, no need to build
3457 libstdc++ with -flat_namespace.
3458
3459 2005-01-13 Jonathan Wakely <redi@gcc.gnu.org>
3460
3461 * docs/doxygen/user.cfg.in: Set HAVE_DOT back to YES.
3462
3463 2005-01-13 Paolo Carlini <pcarlini@suse.de>
3464
3465 * testsuite/26_numerics/cmath/c99_classification_macros_c++.cc:
3466 Re-enable commented-out test for double type.
3467
3468 2005-01-11 Paolo Carlini <pcarlini@suse.de>
3469 Benjamin Kosnik <bkoz@redhat.com>
3470
3471 * src/istream.cc (basic_istream<char>::ignore(streamsize),
3472 basic_istream<char>::ignore(streamsize, int_type),
3473 basic_istream<wchar_t>::ignore(streamsize),
3474 basic_istream<wchar_t>::ignore(streamsize, int_type)): In case
3475 more than numeric_limits<streamsize>::max() chars are skipped,
3476 set _M_gcount = max().
3477 * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3478 int_type)): Likewise; keep simple, don't forward.
3479
3480 2005-01-11 Paolo Carlini <pcarlini@suse.de>
3481
3482 * src/istream.cc (basic_istream<char>::ignore(streamsize),
3483 basic_istream<char>::ignore(streamsize, int_type),
3484 basic_istream<wchar_t>::ignore(streamsize),
3485 basic_istream<wchar_t>::ignore(streamsize, int_type)): Revert
3486 2005-01-05 change: actually, the previous behavior is conforming
3487 and consistent with that of get(char_type*, streamsize, char_type),
3488 albeit slightly different from that of 3.3/3.4 in a corner case
3489 due to the use of snextc.
3490 * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3491 int_type)): Likewise.
3492 * testsuite/27_io/basic_istream/ignore/char/4.cc: Remove.
3493 * testsuite/27_io/basic_istream/ignore/wchar_t/4.cc: Likewise.
3494
3495 2005-01-11 Paolo Carlini <pcarlini@suse.de>
3496
3497 * include/tr1/type_traits: Implement alignment_of and aligned_storage.
3498 * testsuite/tr1/4_metaprogramming/other_transformations/
3499 aligned_storage/aligned_storage.cc: New.
3500 * testsuite/tr1/4_metaprogramming/other_transformations/
3501 aligned_storage/typedefs.cc: Likewise.
3502 * testsuite/tr1/4_metaprogramming/type_properties/
3503 alignment_of/alignment_of.cc: Likewise.
3504 * testsuite/tr1/4_metaprogramming/type_properties/
3505 alignment_of/typedefs.cc: Likewise.
3506
3507 2005-01-10 Paolo Carlini <pcarlini@suse.de>
3508
3509 * Makefile.in: Regenerate.
3510 * libmath/Makefile.in: Likewise.
3511 * libsupc++/Makefile.in: Likewise.
3512 * po/Makefile.in: Likewise.
3513 * src/Makefile.in: Likewise.
3514 * testsuite/Makefile.in: Likewise.
3515
3516 2005-01-10 Paolo Carlini <pcarlini@suse.de>
3517
3518 * include/bits/stl_algobase.h (lexicographical_compare):
3519 Fix concept check.
3520
3521 2005-01-07 Benjamin Kosnik <bkoz@redhat.com>
3522
3523 * acinclude.m4: Remove CCODECVT_H.
3524 * configure: Regenerate.
3525 * include/Makefile.am (host_headers_extra): Move to...
3526 (ext_headers): ...here.
3527 * include/Makefile.in: Regenerate.
3528 * include/ext/enc_filebuf: Remove enc_filebuf, consolidate
3529 enc_traits to...
3530 * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Move...
3531 * include/ext/codecvt_specializations.h: ...here. Remove
3532 _GLIBCXX_USE___ENC_TRAITS.
3533 (__enc_traits): To __encoding_state, put in __gnu_cxx namespace.
3534 (enc_char_traits): To __encoding_char_traits, put in __gnu_cxx
3535 namespace.
3536 * config/locale/generic/codecvt_specializations.h: Remove.
3537 * include/bits/codecvt.h: Remove codecvt_specializations.h include.
3538 * src/codecvt.cc: Remove __enc_traits::_S_max_size.
3539
3540 2005-01-06 Benjamin Kosnik <bkoz@redhat.com>
3541
3542 * include/bits/fstream.tcc: Remove unnecessary qualifications for
3543 uglified data members of basic_filebuf, including _M_buf,
3544 _M_buf_size, _M_mode, _M_pback_init.
3545 * include/std/std_fstream.h: Same.
3546
3547 2005-01-05 Benjamin Kosnik <bkoz@redhat.com>
3548
3549 * testsuite/testsuite_hooks.h:
3550 (copy_constructor::mark_call): Use __throw_runtime_error.
3551 (assignment_operator::mark_call): Same.
3552 * testsuite/testsuite_hooks.cc (verify_demangle): Same.
3553 (locale_data): Remove, just use runtime_error directly.
3554 (environment_variable): Same.
3555 (not_found): Same.
3556 (run_tests_wrapped_locale): Use __throw_runtime_error.
3557 (run_tests_wrapped_env): Same.
3558 (semaphore::semaphore): Same.
3559 (semaphore::signal): Same.
3560 (semaphore::wait): Same.
3561 * testsuite/testsuite_abi.h (symbol_error): Remove, use logic_error.
3562 * testsuite/testsuite_abi.cc (get_symbol): Use __throw_logic_error.
3563 (create_symbols): Use __throw_runtime_error.
3564 * src/bitmap_allocator.cc: Use __throw_bad_alloc.
3565
3566 2005-01-05 Mark Mitchell <mark@codesourcery.com>
3567
3568 * testsuite/27_io/basic_filebuf/open/char/9507.cc: Remove child
3569 process.
3570
3571 2005-01-05 Paolo Carlini <pcarlini@suse.de>
3572
3573 * src/istream.cc (basic_istream<char>::ignore(streamsize),
3574 basic_istream<char>::ignore(streamsize, int_type),
3575 basic_istream<wchar_t>::ignore(streamsize),
3576 basic_istream<wchar_t>::ignore(streamsize, int_type)): At the end,
3577 first check _M_gcount vs __n.
3578 * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3579 int_type)): Likewise.
3580 * testsuite/27_io/basic_istream/ignore/char/4.cc: New.
3581 * testsuite/27_io/basic_istream/ignore/wchar_t/4.cc: Likewise.
3582
3583 2005-01-03 Mark Mitchell <mark@codesourcery.com>
3584
3585 * testsuite/testsuite_hooks.cc: Use __throw_exception_again
3586 instead of just throw.
3587
3588 * testsuite/testsuite_hooks.cc: Update coypright and follow style
3589 guidelines.
3590 * testsuite/testsuite_hooks.h: Likewise.
3591 * testsuite/27_io/basic_filebuf/close/char/4879.cc: Use
3592 semaphores, not sleep.
3593 * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
3594 * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
3595 * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
3596 * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc:
3597 Likewise.
3598 * testsuite/27_io/basic_filebuf/open/char/9507.cc: Likewise.
3599 * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
3600 * testsuite/27_io/objects/char/7.cc: Likewise.
3601 * testsuite/27_io/objects/char/9661-1.cc: Likewise.
3602 * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
3603 * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
3604
3605 * configure.ac: Check for sys/ipc.h and sys/sem.h.
3606 * config.h.in: Regenerated.
3607 * configure: Likewise.
3608 * testsuite/testsuite_hooks.cc (_GLIBCXX_SYSV_SEM): Conditionally
3609 define.
3610 (sys/types.h): Include.
3611 (sys/ipc.h): Likewise.
3612 (sys/sem.h): Likewise.
3613 (__gnu_test::semun): New type.
3614 (__gnu_test::semaphore::sempaphore): New function.
3615 (__gnu_test::semaphore::~semaphore): Likewise.
3616 (__gnu_test::semaphore::wait): Likewise.
3617 (__gnu_test::semaphore::signal): Likewise.
3618 * testsuite/testsuite_hooks.h (__gnu_test::semaphore): New class.
3619 * testsuite/27_io/basic_filebuf/close/char/4879.cc: Use
3620 semaphores, not sleep.
3621 * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
3622 * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
3623 * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
3624 * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc:
3625 Likewise.
3626 * testsuite/27_io/basic_filebuf/open/char/9507.cc: Likewise.
3627 * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
3628 * testsuite/27_io/objects/char/7.cc: Likewise.
3629 * testsuite/27_io/objects/char/9661-1.cc: Likewise.
3630 * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
3631 * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
3632
3633 2005-01-03 Paolo Carlini <pcarlini@suse.de>
3634
3635 * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3636 int_type)): Reset _M_gcount to numeric_limits<streamsize>::min().
3637 * src/istream.cc (basic_istream<char>::ignore(streamsize, int_type),
3638 basic_istream<wchar_t>::ignore(streamsize, int_type)): Likewise.
3639 * src/istream.cc (basic_istream<char>::ignore(streamsize),
3640 basic_istream<wchar_t>::ignore(streamsize)): Likewise; fix a typo.
3641
3642 2005-01-02 Paolo Carlini <pcarlini@suse.de>
3643
3644 * src/istream.cc (basic_istream<char>::ignore(streamsize),
3645 basic_istream<char>::ignore(streamsize, int_type),
3646 basic_istream<wchar_t>::ignore(streamsize),
3647 basic_istream<wchar_t>::ignore(streamsize, int_type)): Avoid
3648 _M_gcount overflows.
3649 * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3650 int_type)): Likewise; use snextc in the main loop, consistently
3651 with the specializations above.
3652
3653 2005-01-02 Chris Jefferson <chris@bubblescope.net>
3654
3655 * include/bits/stl_algobase.h (mismatch): Correct concept check.
3656
3657 2005-01-01 Paolo Carlini <pcarlini@suse.de>
3658
3659 * testsuite/ext/enc_filebuf/char/13189.cc: Fix, first include
3660 testsuite_hooks.h, to know whether including ext/enc_filebuf.h.
3661 * testsuite/ext/enc_filebuf/wchar_t/13189.cc: Likewise.
3662
3663 2005-01-01 Paolo Carlini <pcarlini@suse.de>
3664
3665 * testsuite/27_io/basic_istream/extractors_character/char/1.cc: Fix,
3666 null-terminate array1 at the outset.
3667 * testsuite/27_io/basic_istream/extractors_character/wchar_t/1.cc:
3668 Likewise.