]>
Commit | Line | Data |
---|---|---|
0e6c9eaa JS |
1 | 2007-10-08 Johannes Singler <singler@ira.uka.de> |
2 | ||
3 | * include/parallel/base.h: Added plus and multiplies functor | |
4 | for differently typed objects. | |
5 | * include/parallel/numeric: Use it. | |
6 | * include/parallel/for_each_selectors.h: Allowed different types. | |
7 | * include/parallel/partial_sum.h: Fixed return value. | |
8 | * testsuite/26_numerics/accumulate/1.cc: Tests for accumulate. | |
9 | * testsuite/26_numerics/inner_product/1.cc: Tests for inner_product. | |
10 | ||
d98f312c PC |
11 | 2007-10-08 Paolo Carlini <pcarlini@suse.de> |
12 | ||
13 | * include/bits/stl_move.h (_GLIBCXX_MOVE): Add. | |
14 | * include/bits/stl_algobase.h: Adjust. | |
15 | * include/bits/stl_pair.h: Likewise. | |
16 | ||
17 | * include/bits/stl_algo.h: Minor formatting fixes. | |
18 | ||
a222efd8 BK |
19 | 2007-10-08 Benjamin Kosnik <bkoz@redhat.com> |
20 | ||
21 | PR libstdc++/33489 | |
22 | * include/parallel/multiseq_selection.h: Remove default constructed | |
23 | value_type. | |
24 | * include/parallel/partition.h: | |
25 | * include/parallel/partial_sum.h: Format. | |
26 | ||
1904bef1 JS |
27 | 2007-10-08 Johannes Singler <singler@ira.uka.de> |
28 | ||
29 | * include/parallel/multiway_merge.h: Added reference to paper. | |
30 | * include/parallel/multiseq_selection.h: Added reference to paper. | |
31 | * include/parallel/workstealing.h: Added reference to paper. | |
32 | * include/parallel/balanced_quicksort.h: Added reference to paper. | |
33 | * include/parallel/tree.h: Added reference to paper. | |
34 | * docs/html/parallel_mode.html: Added reference to MCSTL. | |
35 | More documentation on compile-time settings and tuning. | |
36 | ||
6c5f0578 PC |
37 | 2007-10-08 Paolo Carlini <pcarlini@suse.de> |
38 | ||
39 | * include/std/utility (identity, move, forward): Move to... | |
40 | * include/bits/stl_move.h: ... here. | |
41 | * include/Makefile.am: Add. | |
42 | * include/bits/stl_algobase.h: Include the latter. | |
43 | * include/Makefile.in: Regenerate. | |
44 | * testsuite/20_util/pair/moveable.cc: Remove dg-require-rvalref. | |
45 | ||
46 | 2007-10-08 Chris Jefferson <chris@bubblescope.net> | |
47 | Paolo Carlini <pcarlini@suse.de> | |
48 | ||
49 | * include/bits/stl_pair.h (pair<>:pair(pair&&), | |
50 | pair<>::operator=(pair&&)): Add. | |
51 | ||
ed540c0a CJ |
52 | 2007-10-07 Chris Jefferson <chris@bubblescope.net> |
53 | Paolo Carlini <pcarlini@suse.de> | |
54 | ||
55 | * include/debug/list (list<>::list(list&&), | |
56 | list<>::operator=(list&&)): Add. | |
57 | (list<>::swap): Adjust. | |
58 | (swap(list&&, list& __y), swap(list&, list&& __y)): Add. | |
59 | * include/debug/vector (vector<>::vector(vector&&), | |
60 | vector<>::operator=(vector&&)): Add. | |
61 | (vector<>::swap): Adjust. | |
62 | (swap(vector&&, vector& __y), swap(vector&, vector&& __y)): Add. | |
63 | * include/debug/deque (deque<>::deque(deque&&), | |
64 | deque<>::operator=(deque&&)): Add. | |
65 | (deque<>::swap): Adjust. | |
66 | (swap(deque&&, deque& __y), swap(deque&, deque&& __y)): Add. | |
67 | * include/debug/set.h (set<>::set(set&&), | |
68 | set<>::operator=(set&&)): Add. | |
69 | (set<>::swap): Adjust. | |
70 | (swap(set&&, set& __y), swap(set&, set&& __y)): Add. | |
71 | * include/debug/map.h (map<>::map(map&&), | |
72 | map<>::operator=(map&&)): Add. | |
73 | (map<>::swap): Adjust. | |
74 | (swap(map&&, map& __y), swap(map&, map&& __y)): Add. | |
75 | * include/debug/multiset.h (multiset<>::multiset(multiset&&), | |
76 | multiset<>::operator=(multiset&&)): Add. | |
77 | (smultiet<>::swap): Adjust. | |
78 | (swap(multiset&&, multiset& __y), | |
79 | swap(multiset&, multiset&& __y)): Add. | |
80 | * include/debug/multimap.h (multimap<>::multimap(multimap&&), | |
81 | multimap<>::operator=(multimap&&)): Add. | |
82 | (multimap<>::swap): Adjust. | |
83 | (swap(multimap&&, multimap& __y), | |
84 | swap(multimap&, multimap&& __y)): Add. | |
85 | ||
3a6b0f54 PC |
86 | 2007-10-07 Paolo Carlini <pcarlini@suse.de> |
87 | ||
88 | * include/bits/stl_algobase.h (_GLIBCXX_MOVE): Add. | |
89 | (swap, __iter_swap): Use it. | |
a222efd8 BK |
90 | * testsuite/25_algorithms/rotate/moveable.cc: Remove |
91 | dg-require-rvalref. | |
3a6b0f54 PC |
92 | * testsuite/25_algorithms/remove/moveable.cc: Likewise. |
93 | * testsuite/25_algorithms/partition/moveable.cc: Likewise. | |
94 | * testsuite/25_algorithms/swap_ranges/moveable.cc: Likewise. | |
95 | * testsuite/25_algorithms/reverse/moveable.cc: Likewise. | |
96 | * testsuite/25_algorithms/unique/moveable.cc: Likewise. | |
97 | * testsuite/25_algorithms/remove_if/moveable.cc: Likewise. | |
98 | ||
99 | * include/bits/stl_algobase.h (lexicographical_compare): | |
100 | Clean up. | |
101 | ||
102 | 2007-10-07 Chris Jefferson <chris@bubblescope.net> | |
103 | Paolo Carlini <pcarlini@suse.de> | |
104 | ||
105 | * include/bits/stl_algo.h (remove, remove_if, unique, | |
106 | __rotate(_RandomAccessIterator, _RandomAccessIterator, | |
107 | _RandomAccessIterator, random_access_iterator_tag)): Use _GLIBCXX_MOVE. | |
108 | (__rotate(_ForwardIterator, _ForwardIterator, _ForwardIterator, | |
109 | forward_iterator_tag), __rotate(_BidirectionalIterator, | |
110 | _BidirectionalIterator, _BidirectionalIterator, | |
111 | bidirectional_iterator_tag), __partition(_ForwardIterator, | |
112 | _ForwardIterator, _Predicate, forward_iterator_tag)): Use iter_swap. | |
113 | ||
049d2422 BK |
114 | 2007-10-06 Benjamin Kosnik <bkoz@redhat.com> |
115 | ||
116 | PR libstdc++/33678 | |
117 | * libsupc++/typeinfo (typeinfo): Revert ordering of virtual components. | |
118 | ||
6f95a65a BK |
119 | 2007-10-06 Benjamin Kosnik <bkoz@redhat.com> |
120 | ||
121 | PR libstdc++/33487 | |
122 | * include/parallel/algorithmfwd.h (for_each, generate, generate_n, | |
123 | transform, replace, replace_if, max_element, min_element, count, | |
124 | count_if): Consistently construct overloads. | |
125 | * include/parallel/numericfwd.h (accumulate, adjacent_difference, | |
126 | inner_product): Same. | |
127 | * include/parallel/algobase.h: Same. | |
128 | * include/parallel/algo.h: Same. | |
129 | * include/parallel/numeric: Same. | |
130 | ||
131 | * include/bits/algorithmfwd.h: Correct find_end placement. | |
132 | ||
133 | * docs/html/parallel_mode.html: Document some of the interface | |
134 | conventions. | |
135 | ||
136 | * include/parallel/search.h (calc_borders): Only use operator ==. | |
137 | ||
138 | * include/parallel/algorithmfwd.h: Move __gnu_sequential bits to... | |
139 | * include/parallel/tags.h: ...here, and use a using directive. | |
140 | ||
141 | * include/parallel/random_shuffle.h: Include stl_numeric. Qualify | |
142 | uses of partial_num with __gnu_sequential. | |
143 | ||
144 | * include/parallel/tree.h: Formatting. | |
145 | ||
6116ca65 BK |
146 | 2007-10-05 Benjamin Kosnik <bkoz@redhat.com> |
147 | ||
148 | Fixes for --disable-libstdcxx-pch. | |
149 | * include/ext/rc_string_base.h: Include stl_iterator_base_funcs.h. | |
150 | * include/ext/vstring_util.h: Include stl_iterator.h and | |
151 | numeric_traits.h. | |
152 | * include/tr1/functional: Include new. | |
153 | * testsuite/util/testsuite_api.h: Include exception. | |
154 | * testsuite/lib/libstdc++.exp (libstdc++_init): Set | |
155 | PCH_CXXFLAGS via cxxpchflags. | |
156 | ||
157 | * testsuite/25_algorithms/binary_search/requirements/ | |
158 | explicit_instantiation/2.cc: Same.: Fix includes. | |
159 | * testsuite/25_algorithms/count_if/requirements/ | |
160 | explicit_instantiation/2.cc: Same. | |
161 | * testsuite/25_algorithms/equal_range/requirements/ | |
162 | explicit_instantiation/2.cc: Same. | |
163 | * testsuite/25_algorithms/find_end/requirements/ | |
164 | explicit_instantiation/2.cc: Same. | |
165 | * testsuite/25_algorithms/find_first_of/requirements/ | |
166 | explicit_instantiation/2.cc: Same. | |
167 | * testsuite/25_algorithms/find_if/requirements/ | |
168 | explicit_instantiation/2.cc: Same. | |
169 | * testsuite/25_algorithms/for_each/requirements/ | |
170 | explicit_instantiation/2.cc: Same. | |
171 | * testsuite/25_algorithms/includes/requirements/ | |
172 | explicit_instantiation/2.cc: Same. | |
173 | * testsuite/25_algorithms/inplace_merge/requirements/ | |
174 | explicit_instantiation/2.cc: Same. | |
175 | * testsuite/25_algorithms/lexicographical_compare/ | |
176 | requirements/explicit_instantiation/2.cc: Same. | |
177 | * testsuite/25_algorithms/lower_bound/requirements/ | |
178 | explicit_instantiation/2.cc: Same. | |
179 | * testsuite/25_algorithms/make_heap/requirements/ | |
180 | explicit_instantiation/2.cc: Same. | |
181 | * testsuite/25_algorithms/max_element/requirements/ | |
182 | explicit_instantiation/2.cc: Same. | |
183 | * testsuite/25_algorithms/max/requirements/ | |
184 | explicit_instantiation/2.cc: Same. | |
185 | * testsuite/25_algorithms/merge/requirements/ | |
186 | explicit_instantiation/2.cc: Same. | |
187 | * testsuite/25_algorithms/min_element/requirements/ | |
188 | explicit_instantiation/2.cc: Same. | |
189 | * testsuite/25_algorithms/min/requirements/ | |
190 | explicit_instantiation/2.cc: Same. | |
191 | * testsuite/25_algorithms/next_permutation/ | |
192 | requirements/explicit_instantiation/2.cc: Same. | |
193 | * testsuite/25_algorithms/nth_element/requirements/ | |
194 | explicit_instantiation/2.cc: Same. | |
195 | * testsuite/25_algorithms/partial_sort_copy/ | |
196 | requirements/explicit_instantiation/2.cc: Same. | |
197 | * testsuite/25_algorithms/partial_sort/requirements/ | |
198 | explicit_instantiation/2.cc: Same. | |
199 | * testsuite/25_algorithms/partition/requirements/ | |
200 | explicit_instantiation/2.cc: Same. | |
201 | * testsuite/25_algorithms/pop_heap/requirements/ | |
202 | explicit_instantiation/2.cc: Same. | |
203 | * testsuite/25_algorithms/prev_permutation/requirements/ | |
204 | explicit_instantiation/2.cc: Same. | |
205 | * testsuite/25_algorithms/push_heap/requirements/ | |
206 | explicit_instantiation/2.cc: Same. | |
207 | * testsuite/25_algorithms/random_shuffle/requirements/ | |
208 | explicit_instantiation/2.cc: Same. | |
209 | * testsuite/25_algorithms/remove_copy_if/requirements/ | |
210 | explicit_instantiation/2.cc: Same. | |
211 | * testsuite/25_algorithms/remove_if/requirements/ | |
212 | explicit_instantiation/2.cc: Same. | |
213 | * testsuite/25_algorithms/replace_copy_if/requirements/ | |
214 | explicit_instantiation/2.cc: Same. | |
215 | * testsuite/25_algorithms/replace_if/requirements/ | |
216 | explicit_instantiation/2.cc: Same. | |
217 | * testsuite/25_algorithms/search_n/requirements/ | |
218 | explicit_instantiation/2.cc: Same. | |
219 | * testsuite/25_algorithms/search/requirements/ | |
220 | explicit_instantiation/2.cc: Same. | |
221 | * testsuite/25_algorithms/set_difference/requirements/ | |
222 | explicit_instantiation/2.cc: Same. | |
223 | * testsuite/25_algorithms/set_intersection/requirements/ | |
224 | explicit_instantiation/2.cc: Same. | |
225 | * testsuite/25_algorithms/set_symmetric_difference/requirements/ | |
226 | explicit_instantiation/2.cc: Same. | |
227 | * testsuite/25_algorithms/set_union/requirements/ | |
228 | explicit_instantiation/2.cc: Same. | |
229 | * testsuite/25_algorithms/sort_heap/requirements/ | |
230 | explicit_instantiation/2.cc: Same. | |
231 | * testsuite/25_algorithms/sort/requirements/ | |
232 | explicit_instantiation/2.cc: Same. | |
233 | * testsuite/25_algorithms/stable_partition/requirements/ | |
234 | explicit_instantiation/2.cc: Same. | |
235 | * testsuite/25_algorithms/stable_sort/requirements/ | |
236 | explicit_instantiation/2.cc: Same. | |
237 | * testsuite/25_algorithms/transform/requirements/ | |
238 | explicit_instantiation/2.cc: Same. | |
239 | * testsuite/25_algorithms/unique_copy/requirements/ | |
240 | explicit_instantiation/2.cc: Same. | |
241 | * testsuite/25_algorithms/unique/requirements/ | |
242 | explicit_instantiation/2.cc: Same. | |
243 | * testsuite/25_algorithms/upper_bound/requirements/ | |
244 | explicit_instantiation/2.cc: Same. | |
245 | ||
246 | * testsuite/25_algorithms/remove/requirements/ | |
247 | explicit_instantiation/pod.cc: Provide a hint to the compiler. | |
248 | ||
f63bc637 PC |
249 | 2007-10-05 Paolo Carlini <pcarlini@suse.de> |
250 | ||
251 | * testsuite/23_containers/map/moveable.cc: Remove dg-require-rvalref. | |
252 | * testsuite/23_containers/multimap/moveable.cc: Likewise. | |
253 | * testsuite/23_containers/set/moveable.cc: Likewise. | |
254 | * testsuite/23_containers/multiset/moveable.cc: Likewise. | |
255 | * testsuite/23_containers/deque/moveable.cc: Likewise. | |
256 | * testsuite/23_containers/list/moveable.cc: Likewise. | |
257 | * testsuite/23_containers/vector/moveable.cc: Likewise. | |
258 | * include/std/utility: Use _GLIBCXX_BEGIN_NAMESPACE. | |
259 | ||
260 | 2007-10-05 Paolo Carlini <pcarlini@suse.de> | |
261 | Chris Jefferson <chris@bubblescope.net> | |
262 | ||
263 | * include/bits/stl_iterator.h (class move_iterator, | |
264 | make_move_iterator): Add. | |
265 | ||
afd82ef5 DK |
266 | 2007-10-04 Doug Kwan <dougkwan@google.com> |
267 | ||
268 | * include/ext/concurrent.h (class __mutex, | |
269 | class __recursive_mutex): Add new method gthread_mutex to access | |
270 | inner gthread mutex. | |
271 | [__GTHREAD_HAS_COND] (class __concurrence_broadcast_error, | |
272 | class __concurrence_wait_error, class __cond): Add. | |
273 | * libsupc++/guard.cc (recursive_push, recursive_pop): Delete. | |
274 | (init_in_progress_flag, set_init_in_progress_flag): Add to | |
275 | replace recursive_push and recursive_pop. | |
276 | (throw_recursive_init_exception): Add. | |
277 | (acquire, __cxa_guard_acquire, __cxa_guard_abort and | |
278 | __cxa_guard_release): [__GTHREAD_HAS_COND] Use a conditional | |
279 | for synchronization of static variable initialization. | |
280 | The global mutex is only held briefly when guards are | |
281 | accessed. [!__GTHREAD_HAS_COND] Fall back to the old code, | |
282 | which deadlocks. | |
283 | * testsuite/thread/guard.cc: Add new test. It deadlocks with the | |
284 | old locking code in libstdc++-v3/libsup++/guard.cc. | |
285 | ||
78b36b70 PC |
286 | 2007-10-04 Paolo Carlini <pcarlini@suse.de> |
287 | ||
288 | * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: | |
289 | Adjust dg-error line number. | |
290 | * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: | |
291 | Likewise. | |
292 | * testsuite/23_containers/vector/requirements/dr438/ | |
293 | constructor_1_neg.cc: Likewise. | |
294 | * testsuite/23_containers/vector/requirements/dr438/ | |
295 | constructor_2_neg.cc: Likewise. | |
296 | * testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: | |
297 | Adjust dg-error line number. | |
298 | * testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: | |
299 | Likewise. | |
300 | * testsuite/23_containers/deque/requirements/dr438/ | |
301 | constructor_1_neg.cc: Likewise. | |
302 | * testsuite/23_containers/deque/requirements/dr438/ | |
303 | constructor_2_neg.cc: Likewise. | |
304 | * testsuite/23_containers/list/requirements/dr438/assign_neg.cc: | |
305 | Adjust dg-error line number. | |
306 | * testsuite/23_containers/list/requirements/dr438/insert_neg.cc: | |
307 | Likewise. | |
308 | * testsuite/23_containers/list/requirements/dr438/ | |
309 | constructor_1_neg.cc: Likewise. | |
310 | * testsuite/23_containers/list/requirements/dr438/ | |
311 | constructor_2_neg.cc: Likewise. | |
312 | ||
313 | 2007-10-04 Chris Jefferson <chris@bubblescope.net> | |
314 | Paolo Carlini <pcarlini@suse.de> | |
315 | ||
316 | * include/bits/stl_list.h (list<>::list(list&&), | |
317 | list<>::operator=(list&&)): Add. | |
318 | (list<>::swap): Adjust. | |
319 | (swap(list&&, list& __y), swap(list&, list&& __y)): Add. | |
320 | * include/bits/stl_vector.h (vector<>::vector(vector&&), | |
321 | vector<>::operator=(vector&&)): Add. | |
322 | (vector<>::swap): Adjust. | |
323 | (swap(vector&&, vector& __y), swap(vector&, vector&& __y)): Add. | |
324 | * include/bits/stl_bvector.h (vector<>::vector(vector&&), | |
325 | vector<>::operator=(vector&&)): Add. | |
326 | (vector<>::swap): Adjust. | |
327 | * include/bits/stl_deque.h (deque<>::deque(deque&&), | |
328 | deque<>::operator=(deque&&)): Add. | |
329 | (deque<>::swap): Adjust. | |
330 | (swap(deque&&, deque& __y), swap(deque&, deque&& __y)): Add. | |
331 | * include/bits/stl_set.h (set<>::set(set&&), | |
332 | set<>::operator=(set&&)): Add. | |
333 | (set<>::swap): Adjust. | |
334 | (swap(set&&, set& __y), swap(set&, set&& __y)): Add. | |
335 | * include/bits/stl_map.h (map<>::map(map&&), | |
336 | map<>::operator=(map&&)): Add. | |
337 | (map<>::swap): Adjust. | |
338 | (swap(map&&, map& __y), swap(map&, map&& __y)): Add. | |
339 | * include/bits/stl_multiset.h (multiset<>::multiset(multiset&&), | |
340 | multiset<>::operator=(multiset&&)): Add. | |
341 | (smultiet<>::swap): Adjust. | |
342 | (swap(multiset&&, multiset& __y), | |
343 | swap(multiset&, multiset&& __y)): Add. | |
344 | * include/bits/stl_multimap.h (multimap<>::multimap(multimap&&), | |
345 | multimap<>::operator=(multimap&&)): Add. | |
346 | (multimap<>::swap): Adjust. | |
347 | (swap(multimap&&, multimap& __y), | |
348 | swap(multimap&, multimap&& __y)): Add. | |
349 | ||
350 | 2007-10-04 Paolo Carlini <pcarlini@suse.de> | |
351 | ||
352 | Avoid copying some allocator objects. | |
353 | * include/bits/stl_list.h (_List_impl::_List_impl(), | |
354 | _List_base::_List_base(), list<>::list()): Add. | |
355 | * include/bits/stl_vector.h (_Vector_impl::_Vector_impl(), | |
356 | _Vector_base::_Vector_base(), vector<>::vector()): Add. | |
357 | * include/bits/stl_bvector.h (_Bvector_impl::_Bvector_impl(), | |
358 | _Bvector_base::_Bvector_base(), vector<>::vector()): Add. | |
359 | * include/bits/stl_deque.h (_Deque_impl::_Deque_impl(), | |
360 | _Deque_base::_Deque_base(), deque<>::deque()): Add. | |
361 | * include/bits/stl_tree.h (_Rb_tree_impl<>::_Rb_tree_impl(), | |
362 | _Rb_tree_impl<>::_M_initialize): Add. | |
363 | (_Rb_tree<>::_Rb_tree(const _Compare&, const allocator_type&), | |
364 | _Rb_tree(const _Rb_tree&)): Adjust. | |
365 | * include/bits/stl_set.h (set<>::set(), | |
366 | set(_InputIterator, _InputIterator)): Use _M_t default constructor. | |
367 | * include/bits/stl_map.h (map<>::map(), set(_InputIterator, | |
368 | _InputIterator)): Use _M_t default constructor. | |
369 | * include/bits/stl_multiset.h (multiset<>::multiset(), | |
370 | multiset(_InputIterator, _InputIterator)): Use _M_t default | |
371 | constructor. | |
372 | * include/bits/stl_multimap.h (multimap<>::multimap(), | |
373 | multimap(_InputIterator, _InputIterator)): Use _M_t default | |
374 | constructor. | |
375 | ||
f5783e34 CJ |
376 | 2007-10-03 Chris Jefferson <chris@bubblescope.net> |
377 | Benjamin Kosnik <bkoz@redhat.com> | |
378 | ||
379 | * testsuite/20_util/pair/moveable.cc: New. Merge from | |
380 | libstdcxx_so_7-branch. | |
381 | * testsuite/23_containers/deque/capacity/moveable.cc: Same. | |
382 | * testsuite/23_containers/deque/cons/moveable.cc: Same. | |
383 | * testsuite/23_containers/deque/modifiers/moveable.cc: Same. | |
384 | * testsuite/23_containers/deque/moveable.cc: Same. | |
385 | * testsuite/23_containers/list/moveable.cc: Same. | |
386 | * testsuite/23_containers/map/moveable.cc: Same. | |
387 | * testsuite/23_containers/multimap/moveable.cc: Same. | |
388 | * testsuite/23_containers/multiset/moveable.cc: Same. | |
389 | * testsuite/23_containers/set/moveable.cc: Same. | |
390 | * testsuite/23_containers/vector/cons/moveable.cc: Same. | |
391 | * testsuite/23_containers/vector/modifiers/moveable.cc: Same. | |
392 | * testsuite/23_containers/vector/moveable.cc: Same. | |
393 | * testsuite/23_containers/vector/resize/moveable.cc: Same. | |
394 | * testsuite/25_algorithms/heap/moveable.cc: Same. | |
395 | * testsuite/25_algorithms/nth_element/moveable.cc: Same. | |
396 | * testsuite/25_algorithms/partial_sort/moveable.cc: Same. | |
397 | * testsuite/25_algorithms/partition/moveable.cc: Same. | |
398 | * testsuite/25_algorithms/remove_if/moveable.cc: Same. | |
399 | * testsuite/25_algorithms/remove/moveable.cc: Same. | |
400 | * testsuite/25_algorithms/reverse/moveable.cc: Same. | |
401 | * testsuite/25_algorithms/rotate/moveable.cc: Same. | |
402 | * testsuite/25_algorithms/sort/moveable.cc: Same. | |
403 | * testsuite/25_algorithms/swap_ranges/moveable.cc: Same. | |
404 | * testsuite/25_algorithms/unique/moveable.cc: Same. | |
405 | * testsuite/util/testsuite_rvalref.h: New. | |
406 | ||
407 | * testsuite/25_algorithms/equal/equal.cc: Move to... | |
408 | * testsuite/25_algorithms/equal/no_operator_ne.cc: ...this. | |
409 | * testsuite/25_algorithms/heap/heap.cc: Move to... | |
410 | * testsuite/25_algorithms/heap/1.cc: ...this. | |
411 | * testsuite/25_algorithms/lower_bound/lower_bound.cc: Move to... | |
412 | * testsuite/25_algorithms/lower_bound/no_operator_ne.cc: ...this. | |
413 | * testsuite/25_algorithms/partition/partition.cc: Move to... | |
414 | * testsuite/25_algorithms/partition/1.cc: ...this. | |
415 | * testsuite/25_algorithms/stable_partition/1.cc: ... and this. | |
416 | ||
417 | * testsuite/25_algorithms/search/1.cc: Update from merge. | |
418 | * testsuite/25_algorithms/search/check_type.cc: Same. | |
419 | ||
420 | * testsuite/lib/dg-options.exp (dg-require-rvalref): New. | |
421 | * testsuite/lib/libstdc++.exp (check_v3_target_rvalref): New. | |
422 | ||
b6f914f6 RS |
423 | 2007-10-03 Richard Sandiford <richard@codesourcery.com> |
424 | ||
425 | * acinclude.m4 (GLIBCXX_ENABLE_C99): Temporarily add | |
426 | -fno-exceptions to CXXFLAGS. Use GCC_TRY_COMPILE_OR_LINK. | |
427 | Make the tests assign results to volatile variables. Use -lm | |
428 | for link tests in GCC_TRY_COMPILE_OR_LINK. Fall back to | |
429 | compile-only tests if -lm is not available. | |
430 | * configure: Regenerate. | |
431 | ||
f5ad3163 PC |
432 | 2007-10-03 Paolo Carlini <pcarlini@suse.de> |
433 | ||
434 | PR libstdc++/33613 | |
435 | * include/debug/functions.h (__check_partitioned): Rename to... | |
436 | (__check_partioned_lower): ... this. | |
437 | (__check_partioned_upper): Add. | |
438 | * include/debug/macros.h (__glibcxx_check_partitioned): Rename to... | |
439 | (__glibcxx_check_partitioned_lower): ... this, adjust. | |
440 | (__glibcxx_check_partitioned_upper): Add. | |
441 | * include/debug/debug.h (__glibcxx_requires_partitioned): Rename to... | |
442 | (__glibcxx_requires_partitioned_lower): ... this, adjust. | |
443 | (__glibcxx_requires_partitioned_upper): Add. | |
444 | * include/bits/stl_algo.h (lower_bound, upper_bound, equal_range, | |
445 | binary search): Use the above. | |
446 | * testsuite/25_algorithms/lower_bound/33613.cc: New. | |
447 | * testsuite/25_algorithms/upper_bound/33613.cc: Likewise. | |
448 | ||
9e4e0916 KH |
449 | 2007-10-03 Kazu Hirata <kazu@codesourcery.com> |
450 | ||
451 | Revert: | |
452 | 2007-10-02 Richard Sandiford <richard@codesourcery.com> | |
453 | * acinclude.m4 (GLIBCXX_ENABLE_C99): Temporarily add | |
454 | -fno-exceptions to CXXFLAGS. Use GCC_TRY_COMPILE_OR_LINK. | |
455 | Make the tests assign results to volatile variables. | |
456 | * configure: Regenerate. | |
457 | ||
b3226574 RS |
458 | 2007-10-02 Richard Sandiford <richard@codesourcery.com> |
459 | ||
460 | * acinclude.m4 (GLIBCXX_ENABLE_C99): Temporarily add | |
461 | -fno-exceptions to CXXFLAGS. Use GCC_TRY_COMPILE_OR_LINK. | |
462 | Make the tests assign results to volatile variables. | |
463 | * configure: Regenerate. | |
464 | ||
506f93ba BK |
465 | 2007-10-02 Benjamin Kosnik <bkoz@redhat.com> |
466 | ||
467 | * testsuite/25_algorithms/binary_search/2.cc: Split into... | |
468 | * testsuite/25_algorithms/upper_bound/2.cc: ... this. | |
469 | * testsuite/25_algorithms/lower_bound/2.cc: ... this. | |
470 | * testsuite/25_algorithms/equal_range/2.cc: ... and this. | |
f5783e34 CJ |
471 | |
472 | 2007-10-02 Chris Jefferson <chris@bubblescope.net> | |
473 | ||
474 | * testsuite/25_algorithms/search/1.cc: Merge from | |
506f93ba | 475 | libstdcxx_so_7-branch. |
f5783e34 CJ |
476 | * testsuite/25_algorithms/search/check_type.cc: Same. |
477 | * testsuite/25_algorithms/sort/vectorbool.cc: Same. | |
506f93ba | 478 | |
ee5ca789 JW |
479 | 2007-09-30 Jonathan Wakely <jwakely.gcc@gmail.com> |
480 | ||
481 | * src/valarray-inst.cc, include/ext/atomicity.h, | |
482 | include/ext/concurrence.h, include/bits/basic_string.h, | |
483 | include/bits/fstream.tcc, include/ext/vstring.h: Fix comment typos. | |
484 | ||
1b54a3bb JW |
485 | 2007-09-29 Jonathan Wakely <jwakely.gcc@gmail.com> |
486 | ||
487 | * docs/html/test.html, docs/html/ext/mt_allocator.html, | |
488 | docs/html/ext/tr1.html, docs/html/17_intro/contribute.html, | |
489 | docs/html/documentation.html, docs/html/20_util/allocator.html: | |
490 | Update docs to refer to Subversion not CVS. Fix markup. | |
491 | ||
96cbc734 JW |
492 | 2007-09-29 Jonathan Wakely <jwakely.gcc@gmail.com> |
493 | ||
494 | * docs/html/Makefile: Follow up to libstdc++/14991, remove target. | |
495 | ||
18080e8e BK |
496 | 2007-09-28 Benjamin Kosnik <bkoz@redhat.com> |
497 | ||
498 | * include/parallel/algorithmfwd.h: Spacing. | |
499 | * include/parallel/tags.h: Correct comment. | |
500 | ||
501 | * testsuite/Makefile.am (AM_MAKEFLAGS, AM_RUNTESTFLAGS): Remove. | |
502 | * testsuite/Makefile.in: Regenerate. | |
503 | ||
5c13b77c BK |
504 | 2007-09-27 Benjamin Kosnik <bkoz@redhat.com> |
505 | ||
506 | * testsuite/util/testsuite_hooks.cc (set_memory_limits): Adjust | |
507 | x86_64 virtual memory setting for libgomp. | |
508 | ||
4f99f3d0 BK |
509 | 2007-09-26 Benjamin Kosnik <bkoz@redhat.com> |
510 | ||
511 | * include/bits/stl_algo.h: Add return type information to comments. | |
512 | * include/bits/algorithmfwd.h: Formatting. | |
513 | * testsuite/util/testsuite_hooks.h (NonDefaultConstructible): Move.. | |
514 | * testsuite/util/testsuite_api.h: ...here. Add necessary operators | |
515 | for use in testing chapters 25 and 26. | |
516 | * testsuite/util/testsuite_character.h: Same. | |
517 | ||
518 | * testsuite/25_algorithms/*/requirements/explicit_instantiation/ | |
519 | 2.cc, pod.cc: New. | |
520 | ||
521 | * testsuite/26_numerics/accumulate, adjacent_difference, inner_product, | |
522 | partial_sum/requirements/explicit_instantiation/2.cc, pod.cc: New. | |
523 | ||
524 | * testsuite/26_numerics/numeric_arrays/*: Move contents into | |
525 | testsuite/26_numerics. | |
526 | ||
527 | * testsuite/26_numerics/numeric_operations: Same. | |
528 | ||
529 | * testsuite/23_containers/*/requirements/explicit_instantiation/2.cc: | |
530 | Adjust includes from testsuite_eh.h to testsuite_api.h. | |
531 | ||
23b72f17 RS |
532 | 2007-09-25 Richard Sandiford <rsandifo@nildram.co.uk> |
533 | ||
534 | * testsuite/lib/libstdc++.exp (check_v3_target_fileio): Test lseek. | |
535 | ||
4f99f3d0 | 536 | 2007-09-18 Benjamin Kosnik <bkoz@redhat.com> |
805c2c33 BK |
537 | Chalathip Thumkanon <chalathip@gmail.com> |
538 | ||
80a6ca74 BK |
539 | PR libstdc++/32819 |
540 | PR libstdc++/32822 | |
805c2c33 BK |
541 | * docs/html/ext/pb_ds/hash_based_containers.html: Correct. |
542 | ||
bdfb7c6d BK |
543 | 2007-09-17 Benjamin Kosnik <bkoz@redhat.com> |
544 | ||
545 | * configure.host: Set atomic_flags on i486. | |
546 | ||
547 | * include/Makefile.am: Remove parallel-mode pch. | |
548 | * include/Makefile.in: Regenerate. | |
549 | ||
550 | * testsuite/lib/libstdc++.exp: Set ld_library_flags for libgomp if | |
551 | present. | |
552 | ||
553 | * acinclude.m4 (GLIBCXX_ENABLE_PARALLEL): Comment. | |
554 | * configure: Regenerate. | |
555 | ||
a3e6b31a JS |
556 | 2007-09-17 Johannes Singler <singler@ira.uka.de> |
557 | ||
558 | * include/parallel/for_each.h: Fixed comment/doxygen markup typos. | |
559 | * include/parallel/base.h: Same. | |
560 | * include/parallel/numeric: Same. | |
561 | * include/parallel/quicksort.h: Same. | |
562 | * include/parallel/compiletime_settings.h: Same. | |
563 | * include/parallel/random_shuffle.h: Same. | |
564 | * include/parallel/balanced_quicksort.h: Same. | |
565 | * include/parallel/tree.h: Same. | |
566 | * include/parallel/settings.h: Same. | |
567 | * include/parallel/search.h: Same. | |
568 | * include/parallel/partition.h: Same. | |
569 | * include/parallel/partial_sum.h: Same. | |
570 | ||
fd735b6a PC |
571 | 2007-09-17 Paolo Carlini <pcarlini@suse.de> |
572 | ||
573 | * include/tr1_impl/type_traitsfwd.h (aligned_storage): Remove | |
574 | declaration. | |
575 | * include/tr1_impl/type_traits (aligned_storage): Remove. | |
576 | * include/std/type_traits (aligned_storage, __aligned_storage_msa): | |
577 | Add. | |
578 | * include/tr1/type_traits (aligned_storage): Add. | |
579 | * testsuite/20_util/aligned_storage/value.cc: New. | |
580 | * testsuite/20_util/aligned_storage/requirements/ | |
581 | explicit_instantiation.cc: Likewise. | |
582 | * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust | |
583 | dg-error lines. | |
584 | * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: | |
585 | Likewise. | |
586 | ||
1f9e358a PC |
587 | 2007-09-16 Paolo Carlini <pcarlini@suse.de> |
588 | Douglas Gregor <doug.gregor@gmail.com> | |
589 | ||
590 | * include/tr1_impl/type_traits (aligned_storage): Implement | |
591 | in the neat and general way. | |
592 | ||
c5654e49 BK |
593 | 2007-09-14 Benjamin Kosnik <bkoz@redhat.com> |
594 | ||
595 | * include/parallel/base.h (__gnu_parallel::less<Tp>): Add partial | |
596 | specialization for one argument. | |
597 | (__gnu_parallel::less): Add operator. | |
598 | ||
599 | * include/parallel/multiway_merge.h: Use __builtin_alloca. | |
600 | * include/parallel/partial_sum.h: Same. | |
601 | * include/parallel/find.h: Same. | |
602 | ||
603 | 2007-09-14 Jonathan Wakely <jwakely.gcc@gmail.com> | |
e31fc6a5 JW |
604 | |
605 | * include/tr1_impl/boost_shared_ptr.h: (__weak_ptr::lock()): Add | |
606 | missing template argument. | |
607 | * testsuite/tr1/2_general_utilities/shared_ptr/requirements/ | |
608 | explicit_instantiation/2.cc: New. | |
609 | * testsuite/tr1/2_general_utilities/weak_ptr/requirements/ | |
610 | explicit_instantiation/2.cc: New. | |
611 | ||
c417817a BK |
612 | 2007-09-14 Benjamin Kosnik <bkoz@redhat.com> |
613 | ||
614 | * testsuite/17_intro/headers/all_pedantic_errors.cc: New. | |
615 | * include/tr1_impl/cinttypes: Add pragma GCC system_header. | |
616 | * include/tr1_impl/cfenv: Same. | |
617 | * include/tr1_impl/cstdint: Same. | |
618 | * include/tr1/cstdbool: Same. | |
619 | * include/ext/pb_ds/detail/resize_policy/ | |
620 | hash_prime_size_policy_imp.hpp: Same. | |
621 | * include/parallel/partial_sum.h: Avoid VLA error with | |
622 | __builtin_alloca. | |
623 | ||
d9dced13 RS |
624 | 2007-09-14 Thiemo Seufer <ths@mips.com> |
625 | ||
626 | * crossconfig.m4 (mips*-sde-elf*): New stanza. | |
627 | * configure: Regenerate. | |
628 | ||
5e11f978 BK |
629 | 2007-09-12 Benjamin Kosnik <bkoz@redhat.com> |
630 | ||
631 | * include/ext/pb_ds/*: Change namespace pb_ds to __gnu_pbds. | |
632 | * docs/html/ext/pb_ds/*: Same. | |
633 | * testsuite/ext/pb_ds/*: Same. | |
634 | * testsuite/performance/ext/pb_ds/*: Same. | |
635 | * testsuite/util/*: Same. | |
636 | ||
94dabea7 BK |
637 | 2007-09-12 Benjamin Kosnik <bkoz@redhat.com> |
638 | ||
639 | * include/parallel/find.h: Doxygen fixups. | |
640 | * include/bits/hashtable.h: Same. | |
641 | ||
c2ba9709 JS |
642 | 2007-09-11 Johannes Singler <singler@ira.uka.de> |
643 | Leonor Frias Moya <lfrias@lsi.upc.edu> | |
644 | Felix Putze <kontakt@felix-putze.de> | |
645 | Marius Elvert <marius.elvert@ira.uka.de> | |
646 | Felix Bondarenko <f.bondarenko@web.de> | |
647 | Robert Geisberger <robert.geisberger@stud.uni-karlsruhe.de> | |
648 | Robin Dapp <r.dapp@freenet.de> | |
649 | Benjamin Kosnik <bkoz@redhat.com> | |
650 | ||
651 | Add parallel mode. | |
652 | * include/parallel: New. | |
653 | * include/parallel/iterator.h: New. | |
654 | * include/parallel/multiway_merge.h: New. | |
655 | * include/parallel/parallel.h: New. | |
656 | * include/parallel/algorithm | |
657 | * include/parallel/find_selectors.h: New. | |
658 | * include/parallel/losertree.h: New. | |
659 | * include/parallel/list_partition.h: New. | |
660 | * include/parallel/types.h: New. | |
661 | * include/parallel/for_each.h: New. | |
662 | * include/parallel/multiseq_selection.h: New. | |
663 | * include/parallel/workstealing.h: New. | |
664 | * include/parallel/base.h: New. | |
665 | * include/parallel/par_loop.h: New. | |
666 | * include/parallel/numeric | |
667 | * include/parallel/features.h: New. | |
668 | * include/parallel/quicksort.h: New. | |
669 | * include/parallel/algorithmfwd.h: New. | |
670 | * include/parallel/equally_split.h: New. | |
671 | * include/parallel/compiletime_settings.h: New. | |
672 | * include/parallel/for_each_selectors.h: New. | |
673 | * include/parallel/basic_iterator.h: New. | |
674 | * include/parallel/omp_loop_static.h: New. | |
675 | * include/parallel/random_shuffle.h: New. | |
676 | * include/parallel/balanced_quicksort.h: New. | |
677 | * include/parallel/set_operations.h: New. | |
678 | * include/parallel/tags.h: New. | |
679 | * include/parallel/merge.h: New. | |
680 | * include/parallel/tree.h: New. | |
681 | * include/parallel/settings.h: New. | |
682 | * include/parallel/unique_copy.h: New. | |
683 | * include/parallel/multiway_mergesort.h: New. | |
684 | * include/parallel/numericfwd.h: New. | |
685 | * include/parallel/search.h: New. | |
686 | * include/parallel/partition.h: New. | |
687 | * include/parallel/compatibility.h: New. | |
688 | * include/parallel/algobase.h: New. | |
689 | * include/parallel/find.h: New. | |
690 | * include/parallel/partial_sum.h: New. | |
691 | * include/parallel/algo.h: New. | |
692 | * include/parallel/omp_loop.h: New. | |
693 | * include/parallel/queue.h: New. | |
694 | * include/parallel/timing.h: New. | |
695 | * include/parallel/sort.h: New. | |
696 | * include/parallel/checkers.h: New. | |
697 | * include/parallel/random_number.h: New. | |
698 | * include/bits/algorithmfwd.h: New. | |
699 | ||
700 | * acinclude.m4 (GLIBCXX_ENABLE_PARALLEL): New. | |
701 | * configure.host: Add atomic_flags. | |
702 | * configure.ac: Export ATOMIC_FLAGS, call GLIBCXX_ENABLE_PARALLEL. | |
703 | * src/Makefile.am: Add parallel_list rules. | |
704 | * include/Makefile.am: Add parallel files. | |
705 | * testsuite/Makefile.am (check-parallel): Add. | |
706 | (check-performance-parallel): Add. | |
707 | * config.h.in: Regenerate. | |
708 | * configure: Same. | |
709 | * libsupc++/Makefile.in: Same. | |
710 | * testsuite/Makefile.in: Same. | |
711 | * Makefile.in: Same. | |
712 | * libmath/Makefile.in: Same. | |
713 | * include/Makefile.in: Same. | |
714 | * src/Makefile.in: Same. | |
715 | * po/Makefile.in: Same. | |
716 | ||
717 | * config/abi/pre/gnu.ver: Export parallel list bits. | |
718 | ||
719 | * docs/html/parallel_mode.html: New. | |
720 | * docs/html/documentation.html: Add link. | |
721 | * docs/doxygen/user.cfg.in: Adjust for new files and directory. | |
722 | * docs/doxygen/doxygroups.cc: Adjust namespace markup. | |
723 | ||
724 | * include/debug/set.h: Adjust for _GLIBCXX_STD_D or _P change. | |
725 | * include/debug/bitset: Same. | |
726 | * include/debug/multiset.h: Same. | |
727 | * include/debug/vector: Same. | |
728 | * include/debug/map.h: Same. | |
729 | * include/debug/deque: Same. | |
730 | * include/debug/list: Same. | |
731 | * include/debug/debug.h: Same. | |
732 | * include/debug/multimap.h: Same. | |
733 | * include/std/algorithm: Same. | |
734 | * include/std/numeric: Same. | |
735 | * include/std/bitset: Same. | |
736 | * include/std/string: Same. | |
737 | * include/ext/hash_map: Same. | |
738 | * include/ext/hash_set: Same. | |
739 | * include/bits/stl_list.h: Same. | |
740 | * include/bits/stl_map.h: Same. | |
741 | * include/bits/stl_algobase.h: Same. | |
742 | * include/bits/stl_set.h: Same. | |
743 | * include/bits/stl_multimap.h: Same. | |
744 | * include/bits/stl_vector.h: Same. | |
745 | * include/bits/stl_numeric.h: Same. | |
746 | * include/bits/stl_deque.h: Same. | |
747 | * include/bits/stl_multiset.h: Same. | |
748 | * include/bits/char_traits.h: Same. | |
749 | * include/bits/stl_algo.h: Same. | |
750 | * include/bits/c++config: Same. | |
751 | * include/bits/vector.tcc: Same. | |
752 | * include/bits/deque.tcc: Same. | |
753 | * include/bits/stl_bvector.h: Same. | |
754 | * include/bits/list.tcc: Same. | |
755 | * src/list.cc: Same. | |
756 | * src/parallel_list.cc: New. | |
757 | ||
758 | * testsuite/lib/libstdc++.exp (check_v3_target_parallel_mode): New. | |
759 | * testsuite/lib/dg-options.exp (dg-require-parallel-mode): New. | |
760 | * scripts/testsuite_flags.in (--cxxparallelflags): New. | |
761 | * scripts/check_performance: Adjust. | |
762 | * testsuite/25_algorithms/headers/parallel_algorithm.cc: New. | |
763 | * testsuite/25_algorithms/headers/algorithm_parallel_mode.cc: New. | |
764 | * testsuite/25_algorithms/headers/parallel_algorithm_mixed1.cc: New. | |
765 | * testsuite/25_algorithms/headers/parallel_algorithm_mixed2.cc: New. | |
766 | * testsuite/26_numerics/headers/numeric/parallel_numeric.cc: New. | |
767 | * testsuite/26_numerics/headers/numeric/numeric_parallel_mode.cc: New. | |
768 | * testsuite/26_numerics/headers/numeric/ | |
769 | parallel_numeric_mixed1.cc: New. | |
770 | * testsuite/26_numerics/headers/numeric/ | |
771 | parallel_numeric_mixed2.cc: New. | |
772 | ||
fa6763a6 DJ |
773 | 2007-09-11 Daniel Jacobowitz <dan@codesourcery.com> |
774 | ||
775 | * testsuite/lib/libstdc++.exp (libstdc++_init): Revert part of | |
776 | 2007-09-06 change. | |
777 | ||
3110357b RS |
778 | 2007-09-09 Roger Sayle <roger@eyesopen.com> |
779 | ||
780 | * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ECANCELED for cygwin. | |
781 | * configure: Regenerate. | |
782 | * config/os/generic/error_constants.h: Guard. | |
783 | * testsuite/19_diagnostics/headers/system_error/ | |
784 | types_std_c++0x.cc: Same. | |
785 | ||
0098d806 BK |
786 | 2007-09-09 Benjamin Kosnik <bkoz@redhat.com> |
787 | ||
788 | * testsuite/25_algorithms/binary_search.cc: Move... | |
789 | * testsuite/25_algorithms/binary_search/2.cc: ...here. | |
790 | ||
791 | * testsuite/25_algorithms/sort.cc: Move... | |
792 | * testsuite/25_algorithms/sort/1.cc: ...here. | |
793 | * testsuite/25_algorithms/partial_sort_copy/2.cc: ...here. | |
794 | * testsuite/25_algorithms/nth_element/3.cc: ...here. | |
795 | * testsuite/25_algorithms/partial_sort/2.cc: ...here. | |
796 | * testsuite/25_algorithms/stable_sort/2.cc: ...here. | |
797 | ||
798 | * testsuite/25_algorithms/min_max.cc: Move... | |
799 | * testsuite/25_algorithms/min/1.cc: ...here. | |
800 | * testsuite/25_algorithms/min/2.cc: ...here. | |
801 | * testsuite/25_algorithms/max/1.cc: ...here. | |
802 | * testsuite/25_algorithms/max/2.cc: ...here. | |
803 | ||
7cff41e8 JM |
804 | 2007-09-09 Joseph Myers <joseph@codesourcery.com> |
805 | ||
806 | * testsuite/lib/libstdc++.exp (v3-build-support): Specify output | |
807 | file for preprocessing. Use remote_exec to call ar and ranlib. | |
808 | ||
9adfc73c BK |
809 | 2007-09-08 Benjamin Kosnik <bkoz@redhat.com> |
810 | ||
811 | * include/bits/functional_hash.h: Add ext/numeric_traits.h. | |
812 | * include/tr1/functional_hash.h Same. | |
813 | * include/tr1/functional: Remove string, ext/type_traits.h includes. | |
814 | * include/tr1_impl/functional_hash.h: Move string, wstring | |
815 | definitions for std::<hash>::operator into separate file. | |
816 | * include/std/functional | |
817 | * src/hash.cc: New, move definitions here. | |
818 | * src/hash_c++0x.cc: Same. | |
819 | * src/Makefile.am: Add new source files. | |
820 | * configure: Regenerate. | |
821 | * Makefile.in: Same. | |
822 | * src/Makefile.in: Same. | |
823 | * po/Makefile.in: Same. | |
824 | * libmath/Makefile.in: Same. | |
825 | * libsupc++/Makefile.in: Same. | |
826 | * testsuite/Makefile.in: Same. | |
827 | * config/abi/pre/gnu.ver: Add symbols. | |
828 | * config/abi/pre/gnu-versioned-namespace.ver: Same, fix. | |
829 | ||
12187c13 BK |
830 | 2007-09-07 Benjamin Kosnik <bkoz@redhat.com> |
831 | ||
832 | * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: | |
833 | Correct line number. | |
834 | ||
e4bf5dfc DS |
835 | 2007-09-07 Danny Smith <dannysmith@users.sourceforge.net> |
836 | ||
837 | PR libstdc++/33203 | |
838 | * configure.host (error_constants_dir): New variable, | |
839 | defaulting to os/generic. | |
840 | ( mingw32*): Overide default. | |
841 | * configure.ac (ERROR_CONSTANTS_SRCDIR): New. | |
842 | * configure: Regenerate. | |
843 | * include/Makefile.am (host_headers): Add | |
844 | $(ERROR_CONSTANTS_SRCDIR)/error_constants.h . | |
845 | * include/Makefile.in: Regenerate. | |
846 | * include/std/system_error (enum posix_errno): Remove. | |
847 | Include <bits/error_constants.h> instead. | |
848 | * config/os/mingw32/error_constants.h: New. | |
849 | * config/os/generic/error_constants.h: New. | |
850 | ||
bd1a56a0 BK |
851 | 2007-09-06 Benjamin Kosnik <bkoz@redhat.com> |
852 | ||
853 | * testsuite/lib/libstdc++.exp: Check CXXFLAGS. | |
854 | * scripts/testsuite_flags.in: CXXFLAGS_default, matching dejagnu. | |
855 | ||
856 | * include/std/ostream: Spacing tweak. | |
857 | * include/ext/hashtable.h: Use <algorithm>. | |
858 | * include/ext/slist: Same. | |
859 | * include/ext/rope: Same. | |
860 | * include/bits/stl_function.h: Format. | |
861 | * include/tr1_impl/array: Remove section number in doxygen markup. | |
862 | * src/list.cc: Comment tweak. | |
863 | ||
864 | * docs/doxygen/user.cfg.in: Update for include/tr1_impl. | |
865 | ||
866 | * testsuite/25_algorithms/search_n/iterator.cc: Add using declaration. | |
867 | * testsuite/25_algorithms/nth_element/1.cc: Same. | |
868 | * testsuite/21_strings/char_traits/requirements/short/1.cc: Use | |
869 | char_type typedef to the underlying character type. | |
870 | * testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc: | |
871 | Remove -ansi -pedantic-errors. | |
872 | * testsuite/21_strings/char_traits/requirements/char/typedefs.cc: Same. | |
873 | * testsuite/tr1/6_containers/headers/functional/synopsis.cc: | |
874 | Remove specializations. | |
875 | ||
ccd04b9f PC |
876 | 2007-09-06 Paolo Carlini <pcarlini@suse.de> |
877 | ||
878 | * include/bits/stl_vector.h (_Vector_base<>::_M_allocate): | |
879 | Do not call _M_impl.allocate when __n == 0. | |
880 | * testsuite/23_containers/vector/zero_sized_allocations.cc: New. | |
881 | ||
e054e6fb BK |
882 | 2007-09-06 Benjamin Kosnik <bkoz@redhat.com> |
883 | ||
884 | PR libstdc++/29367 | |
885 | * include/ext/pb_ds/detail/map_debug_base.hpp: From this.. | |
886 | * include/ext/pb_ds/detail/debug_map_base.hpp: ...to this. | |
887 | Rename map_debug_base to debug_map_base, add std::pair output | |
888 | extractors, change duplicate map_debug_base typedef in containers | |
889 | to debug_base. Use m_store_extra_indicator for m_store_hash_indicator. | |
890 | * include/ext/pb_ds/*: Likewise. | |
891 | * include/Makefile.am: Same. | |
892 | * include/Makefile.in: Regenerate. | |
893 | ||
6f6cc094 MK |
894 | 2007-09-06 Matthias Klose <doko@debian.org> |
895 | ||
896 | * testsuite/27_io/headers/cstdlib: Remove empty directory. | |
897 | ||
7336815f RS |
898 | 2007-09-05 Roger Sayle <roger@eyesopen.com> |
899 | ||
900 | * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add EBADMSG for darwin. | |
901 | * configure: Regenerate. | |
902 | * include/std/system_error: Guard. | |
903 | * testsuite/19_diagnostics/headers/system_error/ | |
904 | types_std_c++0x.cc: Same. | |
905 | * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust | |
906 | line numbers. | |
907 | ||
d46c958b PC |
908 | 2007-09-03 Paolo Carlini <pcarlini@suse.de> |
909 | ||
910 | PR libstdc++/33293 | |
911 | * include/bits/stl_numeric.h (accumulate, inner_product): | |
912 | Add inline function-specifier. | |
913 | ||
1ab28be5 DG |
914 | 2007-08-31 Douglas Gregor <doug.gregor@gmail.com> |
915 | ||
916 | * testsuite/abi/demangle/cxx0x/rref.cc: New. | |
917 | ||
e4e5e7f5 BK |
918 | 2007-08-29 Benjamin Kosnik <bkoz@redhat.com> |
919 | ||
920 | * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENODATA, ENOSR, | |
921 | ENOSTR, ETIME for freebsd. | |
922 | * configure: Regenerate. | |
923 | * include/std/system_error: Guard. | |
924 | * testsuite/19_diagnostics/headers/system_error/ | |
925 | types_std_c++0x.cc: Same. | |
926 | * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust | |
927 | line numbers. | |
928 | ||
44d5230c PC |
929 | 2007-08-28 Paolo Carlini <pcarlini@suse.de> |
930 | ||
931 | PR libstdc++/33128 | |
932 | * include/tr1_impl/random (uniform_int<>::_M_call): Deal with | |
933 | __urng() returning negative values. | |
934 | * testsuite/tr1/5_numerical_facilities/random/uniform_int/33128.cc: | |
935 | New. | |
936 | ||
80bf9cff BK |
937 | 2007-08-24 Benjamin Kosnik <bkoz@redhat.com> |
938 | ||
939 | * acinclude.m4: Fix duplicate variable names. | |
940 | * configure: Regenerate. | |
941 | ||
c6a8035a BK |
942 | 2007-08-24 Benjamin Kosnik <bkoz@redhat.com> |
943 | ||
944 | * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): Add ENOLINK, EPROTO | |
945 | for netbsd. | |
946 | * configure: Regenerate. | |
947 | * include/std/system_error: Guard. | |
948 | * testsuite/19_diagnostics/headers/system_error/ | |
949 | types_std_c++0x.cc: Same. | |
950 | * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Adjust | |
951 | line numbers. | |
952 | ||
0646d8a3 BK |
953 | 2007-08-23 Benjamin Kosnik <bkoz@redhat.com> |
954 | ||
955 | * include/std/system_error: New file. | |
956 | * src/system_error.cc: New file. | |
957 | * src/Makefile.am (sources): Add. | |
958 | * src/Makefile.in: Regenerate. | |
959 | * include/Makefile.am (std_headers): Add system_error. | |
960 | * include/Makefile.in: Regenerate. | |
961 | * acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR): New. | |
962 | * configure.ac: Call it. | |
963 | * config.h.in: Regenerate. | |
964 | * include/bits/functional_hash.h: Add hash<error_code>. | |
965 | * include/std/ostream: Add inserters for error_code. | |
966 | ||
967 | * docs/doxygen/user.cfg.in: Add system_error. | |
968 | ||
969 | * config/abi/pre/gnu.ver(GLIBCXX_3.4.10): Add new symbols. | |
970 | ||
971 | * testsuite/19_diagnostics/error_code: New. | |
972 | * testsuite/19_diagnostics/error_code/cons: Same. | |
973 | * testsuite/19_diagnostics/error_code/cons/1.cc: Same. | |
974 | * testsuite/19_diagnostics/error_code/operators: Same. | |
975 | * testsuite/19_diagnostics/error_code/operators/bool.cc: Same. | |
976 | * testsuite/19_diagnostics/error_code/operators/bool_neg.cc: Same. | |
977 | * testsuite/19_diagnostics/error_code/operators/equal.cc: Same. | |
978 | * testsuite/19_diagnostics/error_code/operators/not_equal.cc: Same. | |
979 | * testsuite/19_diagnostics/error_category: Same. | |
980 | * testsuite/19_diagnostics/error_category/cons: Same. | |
981 | * testsuite/19_diagnostics/error_category/cons/copy_neg.cc: Same. | |
982 | * testsuite/19_diagnostics/error_category/cons/default.cc: Same. | |
983 | * testsuite/19_diagnostics/error_category/operators: Same. | |
984 | * testsuite/19_diagnostics/error_category/operators/equal.cc: Same. | |
985 | * testsuite/19_diagnostics/error_category/operators/not_equal.cc: Same. | |
986 | * testsuite/19_diagnostics/headers/system_error: Same. | |
987 | * testsuite/19_diagnostics/headers/system_error/ | |
988 | types_std_c++0x.cc: Same. | |
989 | * testsuite/19_diagnostics/headers/system_error/std_c++0x_neg.cc: Same. | |
990 | * testsuite/19_diagnostics/system_error: Same. | |
991 | * testsuite/19_diagnostics/system_error/ | |
992 | cons_virtual_derivation.cc: Same. | |
993 | * testsuite/19_diagnostics/system_error/cons-1.cc: Same. | |
994 | * testsuite/19_diagnostics/system_error/what-1.cc: Same. | |
995 | * testsuite/19_diagnostics/system_error/what-2.cc: Same. | |
996 | * testsuite/19_diagnostics/system_error/what-big.cc: Same. | |
997 | * testsuite/19_diagnostics/system_error/what-3.cc: Same. | |
998 | * testsuite/19_diagnostics/system_error/what-4.cc: Same. | |
999 | * testsuite/27_io/basic_ostream/inserters_other/wchar_t/ | |
1000 | error_code.cc: Same. | |
1001 | * testsuite/27_io/basic_ostream/inserters_other/char/ | |
1002 | error_code.cc: Same. | |
1003 | * testsuite/tr1/6_containers/hash/operators: New. | |
1004 | * testsuite/tr1/6_containers/hash/operators/size_t.cc: Same. | |
1005 | ||
1006 | * testsuite/23_containers/hash: Move... | |
1007 | * testsuite/20_util/hash: ... here. | |
1008 | * testsuite/20_util/hash/operators: New. | |
1009 | * testsuite/20_util/hash/operators/size_t.cc: New. | |
1010 | ||
1011 | * testsuite/20_util/function_objects/bad_function_call: Move... | |
1012 | * testsuite/20_util/bad_function_call: ...here. | |
1013 | ||
65be6ddd BK |
1014 | 2007-08-21 Benjamin Kosnik <bkoz@montsouris.artheist.org> |
1015 | ||
1016 | * include/Makefile.am (install-data-local): Remove pch-install rules. | |
1017 | (host_headers): Add stdc++.h, stdtr1c++.h, extc++.h. | |
1018 | * include/Makefile.in: Regenerate. | |
1019 | * config.h.in: Same. | |
1020 | ||
1021 | * scripts/check_compile: Remove space between outputs. | |
1022 | * include/ext/throw_allocator.h: Correct doxygen markup. | |
1023 | * include/bits/char_traits.h: Correct spacing. | |
1024 | * include/bits/stl_function.h: Same, for 80 column. | |
1025 | * include/std/valarray: Same. | |
1026 | * testsuite/util/testsuite_iterators.h: Same. | |
1027 | * testsuite/25_algorithms/headers/algorithm/synopsis.cc: Format. | |
1028 | ||
eb0619fe DJ |
1029 | 2007-08-17 Daniel Jacobowitz <dan@codesourcery.com> |
1030 | ||
1031 | PR testsuite/31884 | |
1032 | * testsuite/ext/pb_ds/example/priority_queue_dijkstra.cc (main): Do | |
1033 | not access deleted nodes. | |
1034 | ||
1035 | * testsuite/25_algorithms/copy/streambuf_iterators/char/4.cc, | |
1036 | testsuite/25_algorithms/find/istreambuf_iterators/char/2.cc, | |
1037 | testsuite/27_io/basic_filebuf/open/char/4.cc, | |
1038 | testsuite/27_io/objects/char/9.cc: Use dg-require-fileio. | |
1039 | * testsuite/ext/forced_exception_error/cons_virtual_derivation.cc, | |
1040 | testsuite/ext/pb_ds/regression/hash_data_map_rand.cc, | |
1041 | testsuite/ext/pb_ds/regression/trie_data_map_rand.cc, | |
1042 | testsuite/ext/pb_ds/regression/list_update_no_data_map_rand.cc, | |
1043 | testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc, | |
1044 | testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc, | |
1045 | testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc, | |
1046 | testsuite/ext/pb_ds/regression/priority_queue_rand.cc, | |
1047 | testsuite/ext/pb_ds/regression/tree_data_map_rand.cc, | |
1048 | testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc, | |
1049 | testsuite/ext/throw_allocator/deallocate_global.cc, | |
1050 | testsuite/ext/throw_allocator/check_delete.cc, | |
1051 | testsuite/ext/throw_allocator/check_allocate_max_size.cc, | |
1052 | testsuite/ext/throw_allocator/check_deallocate_null.cc, | |
1053 | testsuite/ext/throw_allocator/check_new.cc, | |
1054 | testsuite/ext/throw_allocator/deallocate_local.cc, | |
65be6ddd BK |
1055 | testsuite/tr1/5_numerical_facilities/random/subtract_with_carry_01/ |
1056 | cons/gen1.cc, | |
1057 | testsuite/tr1/5_numerical_facilities/random/subtract_with_carry/cons/ | |
1058 | gen1.cc, | |
1059 | testsuite/tr1/5_numerical_facilities/random/linear_congruential/cons/ | |
1060 | gen1.cc, | |
1061 | testsuite/tr1/5_numerical_facilities/random/mersenne_twister/cons/ | |
1062 | gen1.cc, | |
eb0619fe DJ |
1063 | testsuite/23_containers/list/modifiers/insert/25288.cc: Use |
1064 | dg-require-time. | |
1065 | ||
4b364615 PC |
1066 | 2007-08-17 Paolo Carlini <pcarlini@suse.de> |
1067 | ||
1068 | * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust | |
1069 | dg-error lines. | |
1070 | * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Ditto. | |
1071 | ||
6c9bfe99 CF |
1072 | 2007-08-17 Chris Fairles <chris.fairles@gmail.com> |
1073 | ||
1074 | PR libstdc++/33098 | |
1075 | * include/std/type_traits (__is_convertible_helper): | |
1076 | Use add_lvalue_reference. | |
1077 | ||
5837d3c8 JW |
1078 | 2007-08-17 Johannes Willkomm <willkomm@sc.rwth-aachen.de> |
1079 | ||
1080 | PR libstdc++/33084 | |
1081 | * include/std/valarray (operator _Op(const _Tp&, | |
1082 | const valarray<>&)): Fix typo. | |
1083 | * testsuite/26_numerics/numeric_arrays/valarray/33084.cc: New. | |
1084 | ||
593124a7 JB |
1085 | 2007-08-07 Jim Blandy <jimb@codesourcery.com> |
1086 | ||
1087 | * src/Makefile.am (libstdc++-symbol.ver): Make | |
1088 | sure the build tree copy of libstdc++-symbol.ver is writeable. | |
1089 | * src/Makefile.in: Regenerated. | |
1090 | ||
2ee0c1fb PC |
1091 | 2007-08-02 Paolo Carlini <pcarlini@suse.de> |
1092 | ||
1093 | DR 660, [Ready] in Toronto. | |
1094 | * include/bits/stl_function.h (bit_and, bit_or, bit_xor): Add. | |
1095 | * testsuite/20_util/function_objects/dr660.cc: New. | |
1096 | * docs/html/ext/howto.html: Add an entry for DR 660, update. | |
1097 | ||
1098 | * docs/html/ext/lwg-closed.html, docs/html/ext/lwg-active.html, | |
1099 | docs/html/ext/lwg-defects.html: Import Revision 49. | |
1100 | ||
c2fe93f7 PC |
1101 | 2007-07-30 Paolo Carlini <pcarlini@suse.de> |
1102 | ||
1103 | PR libstdc++/32908 | |
1104 | * include/bits/stl_algobase.h (struct __lc_rai): New. | |
1105 | (lexicographical_compare(_II1, _II1, _II2, _II2), | |
1106 | lexicographical_compare(_II1, _II1, _II2, _II2, _Compare)): Use it. | |
1107 | * testsuite/performance/25_algorithms/lexicographical_compare.cc: New. | |
1108 | ||
bd12160a PC |
1109 | 2007-07-27 Paolo Carlini <pcarlini@suse.de> |
1110 | ||
1111 | PR libstdc++/32907 | |
1112 | * include/bits/basic_string.h (operator==(const basic_string<_CharT>&, | |
1113 | const basic_string<_CharT>&)): Add. | |
1114 | (operator!=): Forward to operator==. | |
1115 | * include/ext/vstring.h(operator==(const __versa_string<_CharT, | |
1116 | std::char_traits<_CharT>, std::allocator<_CharT>, _Base>&, | |
1117 | const __versa_string<_CharT, std::char_traits<_CharT>, | |
1118 | std::allocator<_CharT>, _Base>&)): Add. | |
1119 | (operator!=): Forward to operator==. | |
1120 | ||
1121 | * include/ext/sso_string_base.h (_M_compare): Remove. | |
1122 | ||
69240fc2 SW |
1123 | 2007-07-25 Stephen M. Webb <stephenw@xandros.com> |
1124 | ||
bd12160a PC |
1125 | Fixed abi_check for missing symbol size changes. |
1126 | * testsuite/util/testsuite_abi.cc: Changed local variable name to | |
1127 | prevent member variable hiding. | |
69240fc2 | 1128 | |
bea780bb | 1129 | 2007-07-25 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> |
18efbe51 JDA |
1130 | |
1131 | PR libstdc++/31836 | |
1132 | * config/locale/generic/c_locale.cc (__convert_to_v): Don't use | |
1133 | strtold if _GLIBCXX_HAVE_BROKEN_STRTOLD is defined. | |
1134 | * config/os/hpux/os_defines.h (_GLIBCXX_HAVE_BROKEN_STRTOLD): Define | |
1135 | if __hppa__ is defined. | |
1136 | ||
40f5cc95 RO |
1137 | 2007-07-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> |
1138 | ||
1139 | PR bootstrap/3456 | |
1140 | * testsuite/22_locale/locale/cons/12658_thread-1.cc: Enable on | |
1141 | mips-sgi-irix6*. | |
1142 | * testsuite/22_locale/locale/cons/12658_thread-2.cc: Likewise. | |
1143 | * testsuite/thread/18185.cc: Likewise. | |
1144 | * testsuite/thread/pthread1.cc: Likewise. | |
1145 | * testsuite/thread/pthread2.cc: Likewise. | |
1146 | * testsuite/thread/pthread3.cc: Likewise. | |
1147 | * testsuite/thread/pthread4.cc: Likewise. | |
1148 | * testsuite/thread/pthread5.cc: Likewise. | |
1149 | * testsuite/thread/pthread6.cc: Likewise. | |
1150 | * testsuite/thread/pthread7-rope.cc: Likewise. | |
bd12160a PC |
1151 | * testsuite/tr1/2_general_utilities/shared_ptr/thread/ |
1152 | default_weaktoshared.cc: Likewise. | |
1153 | * testsuite/tr1/2_general_utilities/shared_ptr/thread/ | |
1154 | mutex_weaktoshared.cc: Likewise. | |
40f5cc95 | 1155 | |
54d82da1 DS |
1156 | 2007-07-16 Danny Smith <dannysmith@users.sourceforge.net> |
1157 | ||
1158 | * config/os/mingw32/ctype_base.h: Use the generic libstdc++ masks | |
1159 | rather than MSVCRT defines. | |
1160 | * config/os/mingw32/ctype_noninline.h (classic_table): Construct | |
1161 | and return a static classic table based on generic libstdc++ masks. | |
1162 | ||
2df6377e DG |
1163 | 2007-07-12 Douglas Gregor <doug.gregor@gmail.com> |
1164 | ||
9012dfca PC |
1165 | * testsuite/tr1/3_function_objects/bind/all_bound.cc: Disambiguate |
1166 | uses of TR1/C++0x facilities. | |
2df6377e DG |
1167 | * testsuite/tr1/3_function_objects/bind/nested.cc: Ditto. |
1168 | * testsuite/tr1/3_function_objects/bind/placeholders.cc: Ditto. | |
9012dfca PC |
1169 | * testsuite/tr1/6_containers/unordered_multimap/requirements/ |
1170 | explicit_instantiation.cc: Ditto. | |
2df6377e DG |
1171 | * testsuite/tr1/6_containers/unordered_multimap/swap/1.cc: Ditto. |
1172 | * testsuite/tr1/6_containers/unordered_multimap/swap/2.cc: Ditto. | |
9012dfca PC |
1173 | * testsuite/tr1/6_containers/unordered_set/requirements/ |
1174 | explicit_instantiation.cc: Ditto. | |
2df6377e DG |
1175 | * testsuite/tr1/6_containers/unordered_set/swap/1.cc: Ditto. |
1176 | * testsuite/tr1/6_containers/unordered_set/swap/2.cc: Ditto. | |
1177 | * testsuite/tr1/6_containers/utility/pair.cc: Ditto. | |
9012dfca PC |
1178 | * testsuite/tr1/6_containers/unordered_map/requirements/ |
1179 | explicit_instantiation.cc: Ditto. | |
2df6377e DG |
1180 | * testsuite/tr1/6_containers/unordered_map/24064.cc: Ditto. |
1181 | * testsuite/tr1/6_containers/unordered_map/swap/1.cc: Ditto. | |
1182 | * testsuite/tr1/6_containers/unordered_map/swap/2.cc: Ditto. | |
1183 | * testsuite/tr1/6_containers/tuple/cons/big_tuples.cc: Ditto. | |
1184 | * testsuite/tr1/6_containers/tuple/cons/constructor.cc: Ditto. | |
1185 | * testsuite/tr1/6_containers/tuple/cons/assignment.cc: Ditto. | |
1186 | * testsuite/tr1/6_containers/tuple/tuple_element.cc: Ditto. | |
1187 | * testsuite/tr1/6_containers/tuple/tuple_size.cc: Ditto. | |
9012dfca PC |
1188 | * testsuite/tr1/6_containers/tuple/comparison_operators/ |
1189 | comparisons.cc: Ditto. | |
2df6377e DG |
1190 | * testsuite/tr1/6_containers/tuple/element_access/get.cc: Ditto. |
1191 | * testsuite/tr1/6_containers/tuple/creation_functions/23978.cc: Ditto. | |
1192 | * testsuite/tr1/6_containers/tuple/creation_functions/tie.cc: Ditto. | |
9012dfca | 1193 | * testsuite/tr1/6_containers/tuple/creation_functions/make_tuple.cc: |
2df6377e | 1194 | Ditto. |
9012dfca PC |
1195 | * testsuite/tr1/6_containers/unordered_multiset/requirements/ |
1196 | explicit_instantiation.cc: Ditto. | |
2df6377e DG |
1197 | * testsuite/tr1/6_containers/unordered_multiset/swap/1.cc: Ditto. |
1198 | * testsuite/tr1/6_containers/unordered_multiset/swap/2.cc: Ditto. | |
1199 | ||
55f0dee2 BW |
1200 | 2007-07-10 Bob Wilson <bob.wilson@acm.org> |
1201 | ||
1202 | * configure.ac: Check if $atomicity_dir is cpu/generic/atomicity_mutex | |
1203 | instead of the non-existent cpu/generic/atomic_mutex. | |
1204 | * configure: Regenerate. | |
1205 | ||
1ef8ecdd PC |
1206 | 2007-07-10 Paolo Carlini <pcarlini@suse.de> |
1207 | ||
1208 | * include/std/utility (identity, move, forward): Add. | |
1209 | * testsuite/20_util/move/requirements/explicit_instantiation.cc: New. | |
1210 | * testsuite/20_util/move/1.cc: New. | |
1211 | * testsuite/20_util/identity/value.cc: New. | |
1212 | * testsuite/20_util/identity/requirements/typedefs.cc: New. | |
1213 | * testsuite/20_util/identity/requirements/explicit_instantiation.cc: | |
1214 | New. | |
1215 | * testsuite/20_util/forward/requirements/explicit_instantiation.cc: | |
1216 | New. | |
1217 | * testsuite/20_util/forward/1.cc: New. | |
1218 | * testsuite/20_util/forward/1_neg.cc: New. | |
1219 | ||
15e25df5 PC |
1220 | 2007-07-09 Paolo Carlini <pcarlini@suse.de> |
1221 | ||
1222 | * testsuite/27_io/ios_base/failure/what-1.cc: Include <stdexcept>. | |
1223 | ||
58b9f26a JX |
1224 | 2007-07-09 Jim Xochellis <jimxoch@yahoo.gr> |
1225 | Paolo Carlini <pcarlini@suse.de> | |
1226 | ||
1227 | * include/bits/stl_algo.h (search(_ForwardIterator1, | |
1228 | _ForwardIterator1, _ForwardIterator2, _ForwardIterator2)): Tidy. | |
1229 | (search(_ForwardIterator1, _ForwardIterator1, _ForwardIterator2, | |
1230 | _ForwardIterator2, _BinaryPredicate)): Likewise. | |
1231 | ||
6ed80bc4 HPN |
1232 | 2007-07-06 Hans-Peter Nilsson <hp@axis.com> |
1233 | ||
1234 | * testsuite/lib/libstdc++.exp (v3-build_support): Use env(AR) | |
1235 | and env(RANLIB), not env(AR_FOR_TARGET) and env(RANLIB_FOR_TARGET). | |
1236 | ||
68d64ccd JR |
1237 | 2007-07-05 Joerg Richter <joerg.richter@pdv-fs.de> |
1238 | ||
1239 | PR libstdc++/31957 | |
1240 | * include/Makefile.am: Work around an AIX sed oddity. | |
1241 | * include/Makefile.in: Regenerate. | |
1242 | ||
e5e94145 JX |
1243 | 2007-07-04 Jim Xochellis <jimxoch@yahoo.gr> |
1244 | ||
1245 | * include/bits/stl_algo.h (search(_ForwardIterator1, | |
1246 | _ForwardIterator1, _ForwardIterator2, _ForwardIterator2)): Simplify | |
1247 | general case loop to a for(;;). | |
1248 | (search(_ForwardIterator1, _ForwardIterator1, _ForwardIterator2, | |
1249 | _ForwardIterator2, _BinaryPredicate)): Likewise; remove redundant | |
1250 | inner loop. | |
1251 | ||
5dddb7e5 PC |
1252 | 2007-07-03 Paolo Carlini <pcarlini@suse.de> |
1253 | ||
1254 | PR libstdc++/31518 | |
1255 | * include/debug/formatter.h (_Error_formatter::_M_get_max_length): New. | |
1256 | (_Error_formatter::_Error_formatter): Use it. | |
1257 | * src/debug.cc: Define. | |
1258 | (_Error_formatter::_M_error): Tweak. | |
1259 | * configure.ac: Adjust version to 6:10:0. | |
1260 | * config/abi/pre/gnu.ver: Export _Error_formatter::_M_get_max_length | |
1261 | at GLIBCXX_3.4.10. | |
1262 | * testsuite/util/testsuite_abi.cc: Add GLIBCXX_3.4.10. | |
1263 | * docs/html/debug.html: Document. | |
1264 | * configure: Regenerate. | |
1265 | ||
269ef14d DG |
1266 | 2007-07-02 Douglas Gregor <doug.gregor@gmail.com> |
1267 | ||
1268 | * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: | |
1269 | Tweak line numbers. | |
1270 | * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: | |
1271 | Ditto. | |
1272 | * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: | |
1273 | Don't try to create an unsigned wchar_t. | |
1274 | * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: | |
1275 | Don't try to create an unsigned wchar_t. | |
1276 | * testsuite/util/testsuite_hooks.h: Remove a stray semicolon. | |
1277 | ||
5edfe9e8 DG |
1278 | 2007-07-01 Douglas Gregor <doug.gregor@gmail.com> |
1279 | ||
1280 | * include/std/type_traits (__make_unsigned): Remove invalid | |
1281 | wchar_t specialization. | |
1282 | (__make_signed): Remove invalid wchar_t specialization. | |
1283 | ||
1284 | 2007-06-29 Douglas Gregor <doug.gregor@gmail.com> | |
1285 | ||
1286 | * testsuite/18_support/headers/cstdbool/std_c++0x_neg.cc: Force | |
1287 | C++98 mode. | |
1288 | * testsuite/18_support/headers/cstdint/std_c++0x_neg.cc: Ditto. | |
1289 | * testsuite/20_util/headers/type_traits/std_c++0x_neg.cc: Ditto. | |
1290 | * testsuite/23_containers/headers/array/std_c++0x_neg.cc: Ditto. | |
1291 | * testsuite/23_containers/headers/tuple/std_c++0x_neg.cc: Ditto. | |
1292 | * testsuite/23_containers/headers/unordered_map/std_c++0x_neg.cc: | |
1293 | Ditto. | |
1294 | * testsuite/23_containers/headers/unordered_set/std_c++0x_neg.cc: | |
1295 | Ditto. | |
1296 | * testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc: Ditto. | |
1297 | * testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc: Ditto. | |
1298 | * testsuite/26_numerics/headers/ctgmath/std_c++0x_neg.cc: Ditto. | |
1299 | * testsuite/26_numerics/headers/random/std_c++0x_neg.cc: Ditto. | |
1300 | * testsuite/27_io/headers/cinttypes/std_c++0x_neg.cc: Ditto. | |
1301 | * testsuite/28_regex/headers/regex/std_c++0x_neg.cc: Ditto. | |
1302 | ||
1ba74130 PC |
1303 | 2007-06-28 Paolo Carlini <pcarlini@suse.de> |
1304 | ||
1305 | PR libstdc++/32509 | |
1306 | * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Carry out the checks | |
1307 | involving the de_DE locale only if an auto locale config is | |
1308 | used for a target suitable for the gnu locale model. | |
1309 | * docs/html/install.html: Update. | |
1310 | * configure: Regenerated. | |
1311 | ||
949d9ae1 BK |
1312 | 2007-06-26 Benjamin Kosnik <bkoz@redhat.com> |
1313 | ||
0bb81a93 BK |
1314 | * testsuite/util/testsuite_api.h: New. |
1315 | * testsuite/27_io/ios_base/failure: Add. | |
1316 | * testsuite/27_io/ios_base/failure/cons_virtual_derivation.cc: New. | |
1317 | * testsuite/27_io/ios_base/failure/what-1.cc: Same. | |
1318 | * testsuite/27_io/ios_base/failure/what-2.cc: Same. | |
1319 | * testsuite/27_io/ios_base/failure/what-big.cc: Same. | |
1320 | * testsuite/27_io/ios_base/failure/what-3.cc: Same. | |
1321 | * testsuite/19_diagnostics/logic_error/ | |
1322 | cons_virtual_derivation.cc: Same. | |
1323 | * testsuite/19_diagnostics/runtime_error/ | |
1324 | cons_virtual_derivation.cc: Same. | |
1325 | * testsuite/18_support/bad_alloc/cons_virtual_derivation.cc: Same. | |
1326 | * testsuite/18_support/bad_cast/cons_virtual_derivation.cc: Same. | |
1327 | * testsuite/18_support/bad_exception/cons_virtual_derivation.cc: Same. | |
1328 | * testsuite/18_support/bad_typeid/cons_virtual_derivation.cc: Same. | |
1329 | * testsuite/ext/concurrence_lock_error: New. | |
1330 | * testsuite/ext/concurrence_lock_error/ | |
1331 | cons_virtual_derivation.cc: Same. | |
1332 | * testsuite/ext/forced_exception_error: New. | |
1333 | * testsuite/ext/forced_exception_error/ | |
1334 | cons_virtual_derivation.cc: Same. | |
1335 | * testsuite/ext/concurrence_unlock_error: New. | |
1336 | * testsuite/ext/concurrence_unlock_error/ | |
1337 | cons_virtual_derivation.cc: Same. | |
1338 | * testsuite/20_util/function_objects/bad_function_call: New. | |
1339 | * testsuite/20_util/function_objects/bad_function_call/ | |
1340 | cons_virtual_derivation.cc: Same. | |
1341 | ||
1342 | 2007-06-26 Benjamin Kosnik <bkoz@redhat.com> | |
1343 | ||
949d9ae1 BK |
1344 | * include/ext/throw_allocator.h: Fixes for -fno-exceptions. |
1345 | * testsuite/util/testsuite_shared.cc: Same. | |
1346 | * testsuite/util/io/illegal_input_error.hpp: Same. | |
1347 | * testsuite/util/io/verified_cmd_line_input.cc: Same. | |
1348 | ||
1349 | * libsupc++/typeinfo (type_info): Correct comment formatting, | |
1350 | clarify member access and public interface. | |
1351 | * libsupc++/exception: Less compressed comments. | |
1352 | * libsupc++/new: Same. | |
1353 | ||
046d30f4 PC |
1354 | 2007-06-18 Paolo Carlini <pcarlini@suse.de> |
1355 | ||
1356 | * include/bits/stl_list.h: Rename guard macro consistently with | |
1357 | file name. | |
1358 | * include/bits/stl_algobase.h: Likewise. | |
1359 | * include/bits/stl_map.h: Likewise. | |
1360 | * include/bits/stl_queue.h: Likewise. | |
1361 | * include/bits/stl_set.h: Likewise. | |
1362 | * include/bits/stl_stack.h: Likewise. | |
1363 | * include/bits/stl_iterator_base_types.h: Likewise. | |
1364 | * include/bits/stl_multimap.h: Likewise. | |
1365 | * include/bits/stl_pair.h: Likewise. | |
1366 | * include/bits/stl_vector.h: Likewise. | |
1367 | * include/bits/stl_deque.h: Likewise. | |
1368 | * include/bits/stl_multiset.h: Likewise. | |
1369 | * include/bits/stl_iterator_base_funcs.h: Likewise. | |
1370 | * include/bits/stl_algo.h: Likewise. | |
1371 | * include/bits/stl_iterator.h: Likewise. | |
1372 | * include/bits/stl_tempbuf.h: Likewise. | |
1373 | * include/bits/stl_bvector.h: Likewise. | |
1374 | * include/bits/stl_function.h: Likewise. | |
1375 | * include/bits/stl_tree.h: Likewise. | |
1376 | ||
19caedae NS |
1377 | 2007-06-17 Nathan Sidwell <nathan@codesourcery.com> |
1378 | ||
1379 | * config/cpu/m68k/atomicity.h: Use __mcfisaa__, __mcfisaaplus__, | |
1380 | __mcfisab__ & __mcfisac__ instead of obsolete cpu #defines. | |
1381 | ||
ddb4f387 RE |
1382 | 2007-06-13 Richard Earnshaw <rearnsha@arm.com> |
1383 | ||
1384 | * libsupc++/eh_arm.cc (__cxa_type_match): Handle foreign | |
1385 | exceptions. | |
1386 | * libsubpc++/eh_personality.cc: Don't try to set up foreign or | |
1387 | forced unwind types here when using the ARM EABI unwinder. | |
1388 | ||
28b69d5d PC |
1389 | 2007-06-13 Paolo Carlini <pcarlini@suse.de> |
1390 | ||
1391 | * include/c_global/cmath: Tweak includes. | |
1392 | * include/std/memory: Likewise. | |
1393 | * include/std/complex: Likewise. | |
1394 | * include/tr1/memory: Likewise. | |
1395 | * include/tr1/complex: Likewise. | |
1396 | * include/tr1/cmath: Likewise; do not wrap special functions | |
1397 | in #ifndef __GXX_EXPERIMENTAL_CXX0X__. | |
1398 | ||
28ec62e0 BK |
1399 | 2007-06-10 Benjamin Kosnik <bkoz@redhat.com> |
1400 | ||
1401 | * testsuite/util/testsuite_performance.h: Add cstring include for | |
1402 | memset. | |
1403 | ||
ad365750 PC |
1404 | 2007-06-08 Paolo Carlini <pcarlini@suse.de> |
1405 | ||
1406 | * docs/html/install.html: Adjust consistently with libstdc++/31717. | |
1407 | ||
9735f6ba FP |
1408 | 2007-06-08 Francesco Palagi <palagi@arcetri.astro.it> |
1409 | ||
1410 | * include/std/fstream: Add Table 92 in comment. | |
1411 | ||
266a2cba PC |
1412 | 2007-06-06 Paolo Carlini <pcarlini@suse.de> |
1413 | ||
1414 | PR libstdc++/32233 | |
1415 | * include/bits/stl_vector.h (_M_fill_initialize): Fix return type. | |
1416 | * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: | |
1417 | Adjust dg-error line. | |
1418 | * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: | |
1419 | Likewise. | |
1420 | ||
c846e485 BK |
1421 | 2007-06-06 Benjamin Kosnik <bkoz@redhat.com> |
1422 | Frank Mori Hess <frank.hess@nist.gov> | |
1423 | ||
1424 | * docs/html/debug.html: Correct link. | |
1425 | ||
4a27a739 PC |
1426 | 2007-06-02 Paolo Carlini <pcarlini@suse.de> |
1427 | ||
1428 | * include/tr1_impl/type_traits (is_reference, add_reference, | |
1429 | remove_reference): Remove. | |
1430 | * include/tr1/type_traits (is_reference, add_reference, | |
1431 | remove_reference): Add. | |
1432 | * include/std/type_traits (is_lvalue_reference, is_rvalue_reference, | |
1433 | is_reference, remove_reference, add_lvalue_reference, | |
1434 | add_rvalue_reference): Add. | |
1435 | * include/tr1_impl/boost_shared_ptr.h (operator*): Adjust. | |
1436 | * testsuite/20_util/add_lvalue_reference/requirements/ | |
1437 | explicit_instantiation.cc: New. | |
1438 | * testsuite/20_util/add_lvalue_reference/value.cc: Likewise. | |
1439 | * testsuite/20_util/add_rvalue_reference/requirements/ | |
1440 | explicit_instantiation.cc: Likewise. | |
1441 | * testsuite/20_util/add_rvalue_reference/value.cc: Likewise. | |
1442 | * testsuite/20_util/is_lvalue_reference/requirements/ | |
1443 | explicit_instantiation.cc: Likewise. | |
1444 | * testsuite/20_util/is_lvalue_reference/requirements/ | |
1445 | typedefs.cc: Likewise. | |
1446 | * testsuite/20_util/is_lvalue_reference/value.cc: Likewise. | |
1447 | * testsuite/20_util/is_rvalue_reference/requirements/ | |
1448 | explicit_instantiation.cc: Likewise. | |
1449 | * testsuite/20_util/is_rvalue_reference/requirements/ | |
1450 | typedefs.cc: Likewise. | |
1451 | * testsuite/20_util/is_rvalue_reference/value.cc: Likewise. | |
1452 | * testsuite/20_util/is_reference/requirements/ | |
1453 | explicit_instantiation.cc: Likewise. | |
1454 | * testsuite/20_util/is_reference/requirements/typedefs.cc: Likewise. | |
1455 | * testsuite/20_util/is_reference/value.cc: Likewise. | |
1456 | * testsuite/20_util/remove_reference/requirements/ | |
1457 | explicit_instantiation.cc: New. | |
1458 | * testsuite/20_util/remove_reference/value.cc: Likewise. | |
1459 | ||
1460 | * testsuite/tr1/4_metaprogramming/add_const/requirements/ | |
1461 | typedefs.cc: Move... | |
1462 | * testsuite/tr1/4_metaprogramming/add_const/value.cc: ... here. | |
1463 | * testsuite/tr1/4_metaprogramming/add_cv/requirements/ | |
1464 | typedefs.cc: Move... | |
1465 | * testsuite/tr1/4_metaprogramming/add_cv/value.cc: ... here. | |
1466 | * testsuite/tr1/4_metaprogramming/add_pointer/requirements/ | |
1467 | typedefs.cc: Move... | |
1468 | * testsuite/tr1/4_metaprogramming/add_pointer/value.cc: ... here. | |
1469 | * testsuite/tr1/4_metaprogramming/add_reference/requirements/ | |
1470 | typedefs.cc: Move... | |
1471 | * testsuite/tr1/4_metaprogramming/add_reference/value.cc: ... here. | |
1472 | * testsuite/tr1/4_metaprogramming/add_volatile/requirements/ | |
1473 | typedefs.cc: Move... | |
1474 | * testsuite/tr1/4_metaprogramming/add_volatile/value.cc: ... here. | |
1475 | * testsuite/tr1/4_metaprogramming/aligned_storage/requirements/ | |
1476 | typedefs.cc: Move... | |
1477 | * testsuite/tr1/4_metaprogramming/aligned_storage/value.cc: ... here. | |
1478 | ||
82a6cadf PB |
1479 | 2007-06-02 Paolo Bonzini <bonzini@gnu.org> |
1480 | ||
1481 | * configure: Regenerate. | |
1482 | ||
5e984b90 BK |
1483 | 2007-06-01 Benjamin Kosnik <bkoz@redhat.com> |
1484 | ||
1485 | * testsuite/19_diagnostics/logic_error/what-big.cc: New. | |
1486 | * testsuite/19_diagnostics/logic_error/what-3.cc: Same. | |
1487 | * testsuite/19_diagnostics/runtime_error/what-big.cc: Same. | |
1488 | * testsuite/19_diagnostics/runtime_error/what-3.cc: Same. | |
1489 | ||
1490 | * testsuite/18_support/14493.cc: Break into... | |
1491 | * testsuite/18_support/exception/what.cc: ...this. | |
1492 | * testsuite/18_support/bad_cast/what.cc: ...this. | |
1493 | * testsuite/18_support/bad_alloc/what.cc: ...this. | |
1494 | * testsuite/18_support/bad_typeid/what.cc: ...this. | |
1495 | * testsuite/18_support/bad_exception/what.cc: ...this. | |
1496 | ||
1497 | * testsuite/19_diagnostics/bad_exception/23591_thread-1.c: Move... | |
1498 | * testsuite/18_support/bad_exception/23591_thread-1.c: ...here. | |
1499 | ||
1500 | * testsuite/18_support/14026.cc: Move... | |
1501 | * testsuite/18_support/uncaught_exception/14026.cc: ...here. | |
1502 | ||
b8637750 BK |
1503 | 2007-06-01 Benjamin Kosnik <bkoz@redhat.com> |
1504 | ||
1505 | * include/ext/throw_allocator.h (__throw_allocator::allocate): | |
1506 | Throw bad_alloc for out of memory conditions. | |
1507 | * testsuite/ext/throw_allocator/deallocate_global.cc: New. | |
1508 | * testsuite/ext/throw_allocator/check_delete.cc: Same. | |
1509 | * testsuite/ext/throw_allocator/check_allocate_max_size.cc: Same. | |
1510 | * testsuite/ext/throw_allocator/check_deallocate_null.cc: Same. | |
1511 | * testsuite/ext/throw_allocator/explicit_instantiation.cc: Same. | |
1512 | * testsuite/ext/throw_allocator/check_new.cc: Same. | |
1513 | * testsuite/ext/throw_allocator/deallocate_local.cc: Same. | |
1514 | ||
e133ace8 PC |
1515 | 2007-05-31 Paolo Carlini <pcarlini@suse.de> |
1516 | ||
1517 | PR libstdc++/31426 | |
1518 | * include/bits/c++config: Remove namespace association bits | |
1519 | from tr1 to std. | |
1520 | ||
1521 | * include/ext/type_traits.h (__promote, __promote2, | |
1522 | __promote3, __promote4): Add. | |
1523 | ||
1524 | * include/bits/hashtable.h: New. | |
1525 | * include/bits/functional_hash.h: Likewise. | |
1526 | * include/tr1/hashtable.h: Likewise. | |
1527 | ||
1528 | * include/tr1_impl/random: New. | |
1529 | * include/tr1_impl/cinttypes: Likewise. | |
1530 | * include/tr1_impl/cstdlib: Likewise. | |
1531 | * include/tr1_impl/unordered_map: Likewise. | |
1532 | * include/tr1_impl/cstdio: Likewise. | |
1533 | * include/tr1_impl/boost_shared_ptr.h: Likewise. | |
1534 | * include/tr1_impl/cctype: Likewise. | |
1535 | * include/tr1_impl/random.tcc: Likewise. | |
1536 | * include/tr1_impl/tuple: Likewise. | |
1537 | * include/tr1_impl/functional_hash.h: Likewise. | |
1538 | * include/tr1_impl/hashtable: Likewise. | |
1539 | * include/tr1_impl/cmath: Likewise. | |
1540 | * include/tr1_impl/type_traitsfwd.h: Likewise. | |
1541 | * include/tr1_impl/hashtable_policy.h: Likewise. | |
1542 | * include/tr1_impl/cfenv: Likewise. | |
1543 | * include/tr1_impl/unordered_set: Likewise. | |
1544 | * include/tr1_impl/functional: Likewise. | |
1545 | * include/tr1_impl/utility: Likewise. | |
1546 | * include/tr1_impl/complex: Likewise. | |
1547 | * include/tr1_impl/type_traits: Likewise. | |
1548 | * include/tr1_impl/cwchar: Likewise. | |
1549 | * include/tr1_impl/cstdint: Likewise. | |
1550 | * include/tr1_impl/regex: Likewise. | |
1551 | * include/tr1_impl/array: Likewise. | |
1552 | * include/tr1_impl/cwctype: Likewise. | |
1553 | ||
1554 | * include/tr1/type_traitsfwd.h: Remove. | |
1555 | * include/tr1/boost_shared_ptr.h: Likewise. | |
1556 | * include/tr1/common.h: Likewise. | |
1557 | * include/tr1/hashtable: Likewise. | |
1558 | * include/tr1/hashtable_policy.h: Likewise. | |
1559 | * include/tr1/random.tcc: Likewise. | |
1560 | ||
1561 | * include/c_global/cinttypes: Include tr1_impl/cinttypes. | |
1562 | * include/c_global/cstdlib: Likewise for cstdlib. | |
1563 | * include/c_global/cstdio: Likewise for cstdio. | |
1564 | * include/c_global/cctype: Likewise for cctype. | |
1565 | * include/c_global/cmath: Likewise for cmath. | |
1566 | * include/c_global/cfenv: Likewise for cfenv. | |
1567 | * include/c_global/cwchar: Likewise for cwchar. | |
1568 | * include/c_global/cstdint: Likewise for cstdint. | |
1569 | * include/c_global/cwctype: Likewise for cwctype. | |
1570 | * include/tr1/cinttypes: Likewise for cinttypes. | |
1571 | * include/tr1/cstdlib: Likewise for cstdlib. | |
1572 | * include/tr1/cstdio: Likewise for cstdio. | |
1573 | * include/tr1/cctype: Likewise for cctype. | |
1574 | * include/tr1/cmath: Likewise for cmath. | |
1575 | * include/tr1/cfenv: Likewise for cfenv. | |
1576 | * include/tr1/cwchar: Likewise for cwchar. | |
1577 | * include/tr1/cstdint: Likewise for cstdint. | |
1578 | * include/tr1/cwctype: Likewise for cwctype. | |
1579 | * include/tr1/functional_hash.h: Likewise for functional_hash. | |
1580 | ||
1581 | * include/std/tuple: Include tr1_impl/tuple. | |
1582 | * include/std/utility: Likewise for utility. | |
1583 | * include/std/type_traits: Likewise for type_traits. | |
1584 | (is_pod): Just forward to __is_pod. | |
1585 | (has_trivial_default_constructor): Just forward to | |
1586 | __has_trivial_constructor. | |
1587 | (has_trivial_copy_constructor): Just forward to __has_trivial_copy. | |
1588 | (has_trivial_assign): Just forward to __has_trivial_assign. | |
1589 | (has_trivial_destructor): Just forward to __has_trivial_destructor. | |
1590 | (has_nothrow_default_constructor): Just forward to | |
1591 | __has_nothrow_constructor. | |
1592 | (has_nothrow_copy_constructor): Just forward to __has_nothrow_copy. | |
1593 | (has_nothrow_assign): Just forward to __has_nothrow_assign. | |
1594 | (is_base_of): Just forward to __is_base_of. | |
1595 | (is_signed, is_unsigned): Implement according to the C++0x | |
1596 | specifications. | |
1597 | * include/std/memory: Likewise for memory. | |
1598 | * include/std/regex: Likewise for regex. | |
1599 | * include/std/random: Likewise for random. | |
1600 | * include/std/unordered_map: Likewise for unordered_map. | |
1601 | * include/std/unordered_set: Likewise for unordered_set. | |
1602 | * include/std/functional: Likewise for functional. | |
1603 | * include/std/complex: Likewise for complex. | |
1604 | * include/std/array: Likewise for array. | |
1605 | * include/tr1/tuple: Likewise for tuple. | |
1606 | * include/tr1/utility: Likewise for utility. | |
1607 | * include/tr1/type_traits: Likewise for type_traits | |
1608 | * include/tr1/memory: Likewise for memory. | |
1609 | * include/tr1/regex: Likewise for regex. | |
1610 | * include/tr1/random: Likewise for random. | |
1611 | * include/tr1/unordered_map: Likewise for unordered_map. | |
1612 | * include/tr1/unordered_set: Likewise for unordered_set. | |
1613 | * include/tr1/functional: Likewise for functional. | |
1614 | * include/tr1/complex: Likewise for complex. | |
1615 | * include/tr1/array: Likewise for array. | |
1616 | ||
1617 | * include/c_global/ctgmath: Tweak. | |
1618 | * include/c_global/cstdarg: Likewise. | |
1619 | * include/c_global/ctime: Likewise. | |
1620 | * include/c_global/climits: Likewise. | |
1621 | * include/c_global/cfloat: Likewise. | |
1622 | * include/c_global/ccomplex: Likewise. | |
1623 | * include/c_global/cstdbool: Likewise. | |
1624 | ||
1625 | * include/tr1/poly_laguerre.tcc: Tweak, don't use _GLIBCXX_TR1. | |
1626 | * include/tr1/riemann_zeta.tcc: Likewise. | |
1627 | * include/tr1/beta_function.tcc: Likewise. | |
1628 | * include/tr1/exp_integral.tcc: Likewise. | |
1629 | * include/tr1/hypergeometric.tcc: Likewise. | |
1630 | * include/tr1/modified_bessel_func.tcc: Likewise. | |
1631 | * include/tr1/legendre_function.tcc: Likewise. | |
1632 | * include/tr1/special_function_util.h: Likewise. | |
1633 | * include/tr1/bessel_function.tcc: Likewise. | |
1634 | * include/tr1/poly_hermite.tcc: Likewise. | |
1635 | * include/tr1/ell_integral.tcc: Likewise. | |
1636 | * include/tr1/gamma.tcc: Likewise. | |
1637 | * include/tr1/stdlib.h: Likewise. | |
1638 | * include/tr1/math.h: Likewise. | |
1639 | ||
1640 | * include/tr1/complex.h: Minor tweaks. | |
1641 | * include/tr1/wctype.h: Likewise. | |
1642 | * include/tr1/wchar.h: Likewise. | |
1643 | * include/tr1/inttypes.h: Likewise. | |
1644 | * include/tr1/tgmath.h: Likewise. | |
1645 | * include/tr1/cstdbool: Likewise. | |
1646 | * include/tr1/cfloat: Likewise. | |
1647 | * include/tr1/ccomplex: Likewise. | |
1648 | * include/tr1/ctime: Likewise. | |
1649 | * include/tr1/climits: Likewise. | |
1650 | * include/tr1/ctgmath: Likewise. | |
1651 | * include/tr1/cstdarg: Likewise. | |
1652 | ||
1653 | * testsuite/tr1/headers.cc: Move... | |
1654 | * testsuite/tr1/headers/all.cc: ... here. | |
1655 | * testsuite/tr1/using_namespace_std_tr1.cc: Move... | |
1656 | * testsuite/tr1/headers/c++200x/using_namespace_std_tr1.cc: ... here. | |
1657 | * testsuite/tr1/headers/using_namespace_std_tr1.cc ... here. | |
1658 | * testsuite/tr1/headers/c++200x/using_namespace_std_tr1.cc: New. | |
1659 | ||
1660 | * testsuite/20_util/tuple/requirements/explicit_instantiation.cc: | |
1661 | Adjust namespace. | |
1662 | * testsuite/20_util/has_nothrow_copy_constructor/value.cc: Adjust to | |
1663 | the C++0x requirements. | |
1664 | * testsuite/20_util/has_nothrow_default_constructor/value.cc: Likewise. | |
1665 | * testsuite/20_util/has_trivial_copy_constructor/value.cc: Likewise. | |
1666 | * testsuite/20_util/has_trivial_default_constructor/value.cc: Likewise. | |
1667 | ||
1668 | * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Adjust | |
1669 | dg-error lines. | |
1670 | * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: | |
1671 | Likewise. | |
1672 | * testsuite/20_util/headers/type_traits/types_std_c++0x_neg.cc: | |
1673 | Un-xfail. | |
1674 | ||
1675 | * testsuite/20_util/is_signed/value.cc: New. | |
1676 | * testsuite/20_util/is_signed/requirements/typedefs.cc: Likewise. | |
1677 | * testsuite/20_util/is_signed/requirements/explicit_instantiation.cc: | |
1678 | Likewise. | |
1679 | * testsuite/20_util/is_unsigned/value.cc: Likewise.. | |
1680 | * testsuite/20_util/is_unsigned/requirements/typedefs.cc: Likewise. | |
1681 | * testsuite/20_util/is_unsigned/requirements/explicit_instantiation.cc: | |
1682 | Likewise. | |
1683 | ||
1684 | * include/Makefile.am: Adjust. | |
1685 | * include/Makefile.in: Regenerate. | |
1686 | ||
f4c5578f PC |
1687 | 2007-05-31 Paolo Carlini <pcarlini@suse.de> |
1688 | ||
1689 | PR c++/32158 (libstdc++ bits) | |
1690 | * include/bits/stl_uninitialized.h (__uninitialized_copy_aux, | |
1691 | __uninitialized_fill_aux, __uninitialized_fill_n_aux): | |
1692 | Remove. | |
1693 | (struct __uninitialized_copy, struct __uninitialized_fill, | |
1694 | struct __uninitialized_fill_n): Add. | |
1695 | (uninitialized_copy, uninitialized_fill, uninitialized_fill_n): | |
1696 | Adjust. | |
1697 | * testsuite/20_util/specialized_algorithms/32158.cc: New. | |
1698 | ||
1699 | * include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator, | |
1700 | _InputIterator, _ForwardIterator)): Robustify vs non-POD input. | |
1701 | ||
1702 | * include/bits/stl_vector.h (_M_fill_initialize): New. | |
1703 | (vector(size_type, const value_type&, const allocator_type&), | |
1704 | _M_initialize_dispatch(_Integer, _Integer, __true_type)): Use it. | |
1705 | * testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: | |
1706 | Adjust dg-error line. | |
1707 | * testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: | |
1708 | Likewise. | |
1709 | * testsuite/23_containers/vector/requirements/dr438/ | |
1710 | constructor_1_neg.cc: Likewise. | |
1711 | * testsuite/23_containers/vector/requirements/dr438/ | |
1712 | constructor_2_neg.cc: Likewise. | |
1713 | ||
f5062a66 PC |
1714 | 2007-05-29 Paolo Carlini <pcarlini@suse.de> |
1715 | ||
1716 | * aclocal.m4: Regenerate. | |
1717 | ||
1718 | * testsuite/17_intro/headers/c++1998/c++_for_c.tar: Remove. | |
1719 | * testsuite/17_intro/headers/c++1998/c++.tar: Likewise. | |
1720 | ||
0258dc3a BK |
1721 | 2007-05-28 Benjamin Kosnik <bkoz@redhat.com> |
1722 | ||
1723 | PR libstdc++/31717 | |
1724 | * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Re-organize. Sanity check | |
1725 | gnu locale model requests to make sure it will work for the requested | |
1726 | target. Add checks for strxfrm_l, strerror_l when in gnu locale, | |
1727 | and strerror_r everywhere. | |
1728 | * aclocal.m4: Regenerated. | |
1729 | * configure: Regenerated. | |
1730 | * config.h.in: Regenerated. | |
1731 | ||
67a7356b PC |
1732 | 2007-05-27 Paolo Carlini <pcarlini@suse.de> |
1733 | ||
1734 | * include/tr1/boost_shared_ptr.h | |
1735 | (_Sp_counted_base<_S_mutex>::_M_add_ref_lock()): Do not wrap in | |
1736 | #ifdef __GTHREADS. | |
1737 | ||
1738 | 2007-05-27 Paolo Carlini <pcarlini@suse.de> | |
1739 | ||
1740 | * include/c_global/cwchar: Do not include <ctime>. | |
1741 | * include/c_std/cwchar: Likewise. | |
1742 | * include/ext/throw_allocator.h: Do it here. | |
1743 | ||
aaee3e89 PC |
1744 | 2007-05-25 Paolo Carlini <pcarlini@suse.de> |
1745 | ||
1746 | * config/locale/gnu/c_locale.h (__convert_from_v): Fix typo. | |
1747 | ||
8679a8ef PC |
1748 | 2007-05-24 Paolo Carlini <pcarlini@suse.de> |
1749 | ||
1750 | * include/ext/concurrence.h: Use __GCC_HAVE_SYNC_COMPARE_AND_SWAP_*. | |
1751 | ||
1752 | 2007-05-24 Steve Ellcey <sje@cup.hp.com> | |
1cf3d07d SE |
1753 | |
1754 | * Makefile.in: Regenerate. | |
1755 | * configure: Regenerate. | |
1756 | * aclocal.m4: Regenerate. | |
1757 | * include/Makefile.in: Regenerate. | |
1758 | * libmath/Makefile.in: Regenerate. | |
1759 | * libsupc++/Makefile.in: Regenerate. | |
1760 | * po/Makefile.in: Regenerate. | |
1761 | * src/Makefile.in: Regenerate. | |
1762 | * testsuite/Makefile.in: Regenerate. | |
1763 | ||
f697c80d PC |
1764 | 2007-05-24 Paolo Carlini <pcarlini@suse.de> |
1765 | ||
1766 | * config/locale/gnu/c_locale.h (__convert_from_v): Only switch to the | |
1767 | "C" locale if the current one isn't already "C" (for old glibcs). | |
1768 | * config/os/gnu-linux/ctype_noninline.h (ctype<char>::classic_table, | |
1769 | ctype<char>::ctype(__c_locale, const mask*, bool, size_t), | |
1770 | ctype<char>::ctype(const mask*, bool, size_t)): Likewise, for generic | |
1771 | locale model. | |
1772 | * config/locale/gnu/messages_members.h | |
1773 | (messages<>::messages(__c_locale, const char*, size_t), | |
1774 | messages_byname<_CharT>::messages_byname(const char*, size_t)): | |
1775 | Only dynamically allocate memory if __s != "C". | |
1776 | * config/locale/gnu/time_members.h | |
1777 | (__timepunct<_CharT>::__timepunct(__c_locale, const char*, size_t)): | |
1778 | Likewise. | |
1779 | * config/locale/generic/time_members.h | |
1780 | (__timepunct<_CharT>::__timepunct(__c_locale, const char*, size_t)): | |
1781 | Likewise. | |
1782 | ||
1783 | * testsuite/util/testsuite_allocator.h: Revert last change. | |
1784 | ||
b0e94ec9 PC |
1785 | 2007-05-22 Paolo Carlini <pcarlini@suse.de> |
1786 | ||
1787 | * testsuite/util/testsuite_allocator.h (check_new): Assign false | |
1788 | to new_called. | |
1789 | (check_delete): Likewise for delete_called. | |
1790 | ||
32c8d4b1 PC |
1791 | 2007-05-21 Paolo Carlini <pcarlini@suse.de> |
1792 | ||
1793 | * config/locale/gnu/c_locale.h: Do not include <cstdarg>, use builtins. | |
1794 | * config/locale/generic/c_locale.h: Likewise. | |
1795 | ||
2a0ab51c PC |
1796 | 2007-05-21 Paolo Carlini <pcarlini@suse.de> |
1797 | ||
1798 | PR libstdc++/31621 | |
1799 | * acinclude.m4 ([GLIBCXX_CHECK_LINKER_FEATURES]): Use the C compiler. | |
1800 | * configure: Regenerate. | |
1801 | ||
da5a2efd PC |
1802 | 2007-05-20 Paolo Carlini <pcarlini@suse.de> |
1803 | ||
1804 | * include/bits/stl_algo.h: Shuffle the functions to better match the | |
1805 | order in the standard. | |
1806 | ||
99408976 PC |
1807 | 2007-05-17 Paolo Carlini <pcarlini@suse.de> |
1808 | ||
1809 | * config/locale/gnu/c_locale.h: Do not include <libintl.h>. | |
1810 | * config/locale/gnu/messages_members.h: Do it here. | |
1811 | ||
1812 | * config/locale/gnu/c_locale.h: Do not include <cstdio>, use | |
1813 | the builtins. | |
1814 | * config/locale/generic/c_locale.h: Likewise. | |
1815 | ||
85ee35ca BK |
1816 | 2007-05-17 Benjamin Kosnik <bkoz@redhat.com> |
1817 | ||
1818 | * acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add -g to | |
1819 | compile flags, move code to test to global scope. | |
1820 | * configure: Regenerate. | |
1821 | ||
a4e6a80f BK |
1822 | 2007-05-17 Benjamin Kosnik <bkoz@redhat.com> |
1823 | ||
1824 | * testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc: | |
1825 | Fix dg bits. | |
1826 | * testsuite/21_strings/char_traits/requirements/char/typedefs.cc: Same. | |
1827 | ||
1d1c53d5 PC |
1828 | 2007-05-17 Paolo Carlini <pcarlini@suse.de> |
1829 | ||
1830 | * include/bits/stl_algobase.h (mismatch): Move... | |
1831 | * include/bits/stl_algo.h: ... here. | |
1832 | ||
95440e3e BK |
1833 | 2007-05-17 Benjamin Kosnik <bkoz@redhat.com> |
1834 | ||
1835 | * include/tr1/cmath: Guard special math with | |
1836 | __GXX_EXPERIMENTAL_CXX0X__. | |
1837 | * testsuite/26_numerics/headers/cmath/types_std_c++0x_neg.cc: | |
1838 | Remove xfail. | |
1839 | ||
a576fe88 PC |
1840 | 2007-05-17 Paolo Carlini <pcarlini@suse.de> |
1841 | ||
1842 | * include/bits/locale_facets.tcc (__pad<>::_S_pad): Minor tweaks, avoid | |
1843 | unnecessary casts, do widenings just in time. | |
1844 | ||
f99a36b8 | 1845 | 2007-05-16 Benjamin Kosnik <bkoz@redhat.com> |
0d8c6058 | 1846 | |
2c4b148c BK |
1847 | * acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add a function |
1848 | to the test code compiled with -ffunction-sections -fdata-sections. | |
1849 | * configure: Regenerate. | |
1850 | ||
1851 | * testsuite/22_locale/ctype/scan/wchar_t/1.cc: Remove | |
3322ee11 | 1852 | _GLIBCXX_USE_WCHAR_T guards as superfluous. |
2c4b148c BK |
1853 | |
1854 | * testsuite/20_util/make_signed/requirements/typedefs-1.cc: Add | |
1855 | _GLIBCXX_USE_WCHAR_T guards. | |
1856 | * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Same. | |
1857 | * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: Same. | |
1858 | * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Same. | |
1859 | ||
1860 | * testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc: | |
1861 | Add. | |
1862 | * testsuite/21_strings/char_traits/typedefs/char/1.cc: Move... | |
1863 | * testsuite/21_strings/char_traits/requirements/char/typedefs.cc: | |
1864 | ...here. | |
1865 | * testsuite/21_strings/char_traits/typedefs: Remove. | |
1866 | * testsuite/21_strings/char_traits/typedefs/char: Remove. | |
1867 | ||
f99a36b8 | 1868 | 2007-05-16 Benjamin Kosnik <bkoz@redhat.com> |
2c4b148c | 1869 | |
0d8c6058 BK |
1870 | * docs/html/abi.html: Update for gcc-4.1.2 and gcc-4.2.0. |
1871 | ||
c7dbecf3 KK |
1872 | 2007-05-14 Kaz Kojima <kkojima@gcc.gnu.org> |
1873 | ||
1874 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
1875 | 17_hyperg/check_nan.cc: Add -mieee for sh. | |
1876 | ||
2fdff2be PC |
1877 | 2007-05-14 Paolo Carlini <pcarlini@suse.de> |
1878 | ||
1879 | * testsuite/util/testsuite_io.h: Only include <ios>. | |
1880 | ||
56f78eec PC |
1881 | 2007-05-14 Paolo Carlini <pcarlini@suse.de> |
1882 | ||
1883 | * include/bits/allocator.h: Do not include cpp_type_traits.h. | |
1884 | ||
1398d722 PC |
1885 | 2007-05-14 Paolo Carlini <pcarlini@suse.de> |
1886 | ||
1887 | * include/bits/postypes.h (class fpos<>): Remove redundant forward | |
1888 | declaration. | |
1889 | ||
de5e4138 PC |
1890 | 2007-05-13 Paolo Carlini <pcarlini@suse.de> |
1891 | ||
1892 | * include/bits/stl_tempbuf.h (return_temporary_buffer(_Tp*)): Inline. | |
1893 | ||
c1cd4e09 PC |
1894 | 2007-05-13 Paolo Carlini <pcarlini@suse.de> |
1895 | ||
1896 | * include/tr1/type_traitsfwd.h: Fix include guard typo. | |
1897 | ||
538075fe PC |
1898 | 2007-05-11 Paolo Carlini <pcarlini@suse.de> |
1899 | ||
1900 | * include/ext/pod_char_traits.h (char_traits<>::move): | |
1901 | Use __builtin_memmove. | |
1902 | * include/bits/locale_classes.h (locale::_Impl::_M_check_same_name, | |
1903 | collate_byname(const char*, size_t)): Use __builtin_strcmp. | |
1904 | * include/bits/locale_facets.h: Use __builtin_mem* and | |
1905 | __builtin_str* everywhere. | |
1906 | * include/bits/codecvt.h (codecvt_byname(const char*, size_t)): | |
1907 | Use __builtin_strcmp. | |
1908 | * include/bits/char_traits.h: Use __builtin_mem* everywhere. | |
1909 | * include/bits/fstream.tcc (basic_filebuf<>::underflow, imbue): | |
1910 | Use __builtin_memcpy and __builtin_memmove. | |
1911 | * include/bits/locale_facets_nonio.h (moneypunct_byname(const char*, | |
1912 | size_t __refs)): Use __builtin_strcmp. | |
1913 | * include/std/bitset (bitset<>::_M_do_reset): Use __builtin_memset. | |
1914 | * config/locale/gnu/c_locale.h: Use __builtin_strlen, __builtin_strcmp, | |
1915 | and __builtin_memcpy. | |
1916 | * config/locale/gnu/messages_members.h: Likewise. | |
1917 | * config/locale/gnu/time_members.h: Likewise. | |
1918 | * config/locale/generic/c_locale.h: Likewise. | |
1919 | * config/locale/generic/messages_members.h: Likewise. | |
1920 | * config/locale/generic/time_members.h: Likewise. | |
1921 | * config/os/gnu-linux/ctype_noninline.h: Likewise, avoid strdup. | |
1922 | * config/os/tpf/ctype_noninline.h: Likewise. | |
1923 | * config/locale/generic/codecvt_members.cc: Include <cstring>. | |
1924 | * config/locale/generic/ctype_members.cc: Likewise. | |
1925 | * config/locale/generic/collate_members.cc: Likewise. | |
1926 | * config/locale/gnu/c++locale_internal.h: Likewise. | |
1927 | * config/locale/darwin/ctype_members.cc: Likewise. | |
1928 | * src/ctype.cc: Likewise. | |
1929 | * testsuite/19_diagnostics/logic_error/what-1.cc: Likewise. | |
1930 | * testsuite/19_diagnostics/logic_error/what-2.cc: Likewise. | |
1931 | * testsuite/19_diagnostics/runtime_error/what-1.cc: Likewise. | |
1932 | * testsuite/19_diagnostics/runtime_error/what-2.cc: Likewise. | |
1933 | * testsuite/19_diagnostics/runtime_error/what-3.cc: Likewise. | |
1934 | * config/locale/gnu/messages_members.cc: Avoid strdup. | |
1935 | * config/locale/gnu/monetary_members.cc: Likewise. | |
1936 | * config/locale/gnu/time_members.cc: Likewise. | |
1937 | * config/locale/gnu/time_members.cc: Likewise. | |
1938 | * config/locale/generic/c_locale.cc: Likewise. | |
1939 | ||
8339896e BK |
1940 | 2007-05-11 Benjamin Kosnik <bkoz@redhat.com> |
1941 | ||
538075fe | 1942 | * include/std/stdexcept: Remove extra spacing. |
8339896e | 1943 | |
538075fe PC |
1944 | * testsuite/19_diagnostics/stdexceptions.cc: Break into... |
1945 | * testsuite/19_diagnostics/bad_exception: ...this. Populate. | |
1946 | * testsuite/19_diagnostics/logic_error: ... this. | |
1947 | * testsuite/19_diagnostics/logic_error/what-1.cc: ...this. | |
1948 | * testsuite/19_diagnostics/logic_error/what-2.cc: ...this. | |
1949 | * testsuite/19_diagnostics/runtime_error: ...this. | |
1950 | * testsuite/19_diagnostics/runtime_error/what-1.cc: ...this. | |
1951 | * testsuite/19_diagnostics/runtime_error/what-2.cc: ...this. | |
1952 | * testsuite/19_diagnostics/runtime_error/what-3.cc: ...this. | |
1953 | * testsuite/19_diagnostics/23591_thread-1.c: Move... | |
1954 | * testsuite/19_diagnostics/bad_exception/23591_thread-1.c: ...here. | |
8339896e | 1955 | |
1b716e90 PC |
1956 | 2007-05-10 Paolo Carlini <pcarlini@suse.de> |
1957 | ||
1958 | * 27_io/objects/wchar_t/11.cc: Include <cstring>. | |
1959 | * 27_io/objects/wchar_t/10.cc: Likewise. | |
1960 | * 27_io/objects/wchar_t/12.cc: Likewise. | |
1961 | * 27_io/basic_streambuf/sputbackc/char/9538.cc: Likewise. | |
1962 | * 27_io/basic_streambuf/sgetn/char/1.cc: Likewise. | |
1963 | * 27_io/basic_streambuf/overflow/char/1.cc: Likewise. | |
1964 | * 27_io/basic_streambuf/sgetc/char/1.cc: Likewise. | |
1965 | * 27_io/basic_streambuf/sputn/wchar_t/1.cc: Likewise. | |
1966 | * 27_io/basic_streambuf/sputn/char/1.cc: Likewise. | |
1967 | * 27_io/basic_ios/cons/char/3.cc: Likewise. | |
1968 | * 27_io/basic_stringbuf/setbuf/char/2.cc: Likewise. | |
1969 | * 27_io/basic_stringbuf/setbuf/char/3.cc: Likewise. | |
1970 | * 27_io/basic_stringbuf/setbuf/char/4.cc: Likewise. | |
1971 | * 27_io/basic_istream/extractors_character/char/4.cc: Likewise. | |
1972 | * 27_io/fpos/mbstate_t/1.cc: Likewise. | |
1973 | * 27_io/basic_filebuf/setbuf/char/2.cc: Likewise. | |
1974 | * 27_io/basic_filebuf/setbuf/char/3.cc: Likewise. | |
1975 | * 25_algorithms/copy/streambuf_iterators/char/2.cc: Likewise. | |
1976 | * 25_algorithms/copy/streambuf_iterators/char/4.cc: Likewise. | |
1977 | * 19_diagnostics/stdexceptions.cc: Likewise. | |
1978 | * 21_strings/char_traits/requirements/short/1.cc: Likewise. | |
1979 | * 21_strings/basic_string/compare/char/1.cc: Likewise. | |
1980 | * 21_strings/basic_string/capacity/1.cc: Likewise. | |
1981 | * ext/codecvt/char-1.cc: Likewise. | |
1982 | * ext/codecvt/char-2.cc: Likewise. | |
1983 | * ext/codecvt/1.cc: Likewise. | |
1984 | * ext/stdio_sync_filebuf/wchar_t/1.cc: Likewise. | |
1985 | * ext/stdio_sync_filebuf/char/1.cc: Likewise. | |
1986 | * ext/stdio_filebuf/char/2.cc: Likewise. | |
1987 | * ext/stdio_filebuf/char/10063-1.cc: Likewise. | |
1988 | * 22_locale/ctype/narrow/char/19955.cc: Likewise. | |
1989 | * 22_locale/codecvt/unshift/wchar_t/1.cc: Likewise. | |
1990 | * 22_locale/codecvt/unshift/wchar_t/2.cc: Likewise. | |
1991 | * 22_locale/codecvt/unshift/wchar_t/3.cc: Likewise. | |
1992 | * 22_locale/codecvt/unshift/wchar_t/4.cc: Likewise. | |
1993 | * 22_locale/codecvt/unshift/char/1.cc: Likewise. | |
1994 | * 22_locale/codecvt/length/wchar_t/1.cc: Likewise. | |
1995 | * 22_locale/codecvt/length/wchar_t/2.cc: Likewise. | |
1996 | * 22_locale/codecvt/length/wchar_t/3.cc: Likewise. | |
1997 | * 22_locale/codecvt/length/wchar_t/4.cc: Likewise. | |
1998 | * 22_locale/codecvt/length/wchar_t/5.cc: Likewise. | |
1999 | * 22_locale/codecvt/length/wchar_t/6.cc: Likewise. | |
2000 | * 22_locale/codecvt/length/wchar_t/7.cc: Likewise. | |
2001 | * 22_locale/codecvt/always_noconv/char/1.cc: Likewise. | |
2002 | * 22_locale/codecvt/encoding/char/1.cc: Likewise. | |
2003 | * 22_locale/codecvt/in/wchar_t/1.cc: Likewise. | |
2004 | * 22_locale/codecvt/in/wchar_t/2.cc: Likewise. | |
2005 | * 22_locale/codecvt/in/wchar_t/3.cc: Likewise. | |
2006 | * 22_locale/codecvt/in/wchar_t/4.cc: Likewise. | |
2007 | * 22_locale/codecvt/in/wchar_t/5.cc: Likewise. | |
2008 | * 22_locale/codecvt/in/wchar_t/6.cc: Likewise. | |
2009 | * 22_locale/codecvt/in/wchar_t/7.cc: Likewise. | |
2010 | * 22_locale/codecvt/in/wchar_t/8.cc: Likewise. | |
2011 | * 22_locale/codecvt/in/wchar_t/9.cc: Likewise. | |
2012 | * 22_locale/codecvt/in/char/1.cc: Likewise. | |
2013 | * 22_locale/codecvt/max_length/char/1.cc: Likewise. | |
2014 | * 22_locale/codecvt/out/wchar_t/1.cc: Likewise. | |
2015 | * 22_locale/codecvt/out/wchar_t/2.cc: Likewise. | |
2016 | * 22_locale/codecvt/out/wchar_t/3.cc: Likewise. | |
2017 | * 22_locale/codecvt/out/wchar_t/4.cc: Likewise. | |
2018 | * 22_locale/codecvt/out/wchar_t/5.cc: Likewise. | |
2019 | * 22_locale/codecvt/out/wchar_t/6.cc: Likewise. | |
2020 | * 22_locale/codecvt/out/wchar_t/7.cc: Likewise. | |
2021 | * 22_locale/codecvt/out/char/1.cc: Likewise. | |
2022 | * 22_locale/locale/cons/5.cc: Likewise. | |
2023 | * 22_locale/collate_byname/named_equivalence.cc: Likewise. | |
2024 | ||
357480ce MM |
2025 | 2007-05-07 Mark Mitchell <mark@codesourcery.com> |
2026 | ||
2027 | * libstdc++-v3/libsupc++/cxxabi.h (_GLIBCXX_NOTHROW): New macro. | |
2028 | (__cxa_atexit): Use it. | |
2029 | ||
2030 | * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): For | |
2031 | installed-tree testing, search more include directories. | |
2032 | ||
fb8ffd10 BK |
2033 | 2007-05-08 Benjamin Kosnik <bkoz@redhat.com> |
2034 | ||
2035 | * include/std/type_traits (make_signed): Remove specializations | |
2036 | for floating point types. | |
2037 | (make_unsigned): Same. | |
2038 | * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Fix. | |
2039 | * testsuite/20_util/make_signed/requirements/typedefs-1.cc: Same. | |
2040 | * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Same. | |
2041 | * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same. | |
2042 | * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: Same. | |
2043 | * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Same. | |
2044 | ||
a6d99bb4 BK |
2045 | 2007-05-08 Benjamin Kosnik <bkoz@redhat.com> |
2046 | ||
2047 | * testsuite/26_numerics/headers/cmath/types_std_c++0x_neg.cc: New. | |
2048 | ||
fba10f59 JM |
2049 | 2007-05-08 Jason Merrill <jason@redhat.com> |
2050 | ||
2051 | * libsupc++/cxxabi-internal.h: Remove, to be replaced by... | |
2052 | * libsupc++/cxxabi-forced.h: ...this new file. | |
2053 | * include/ext/vstring.tcc: Include cxxabi-forced.h instead. | |
2054 | * include/bits/istream.tcc: Likewise. | |
2055 | * include/bits/ostream.tcc: Likewise. | |
2056 | * include/bits/basic_string.tcc: Likewise. | |
2057 | * include/bits/ostream_insert.h: Likewise. | |
2058 | * include/bits/fstream.tcc: Likewise. | |
2059 | * include/std/bitset: Likewise. | |
2060 | * libsupc++/cxxabi.h: Restore previous contents. | |
2061 | * Makefile.am (headers): Add cxxabi-forced.h. | |
2062 | * Makefile.in: Regenerate. | |
2063 | ||
9b4fc32c BK |
2064 | 2007-05-08 Benjamin Kosnik <bkoz@redhat.com> |
2065 | ||
2066 | * testsuite/util/testsuite_abi.cc: Add CXXABI_1.3.2. | |
2067 | ||
2068 | * libsupc++/cxxabi-internal.h (__foreign_exception::__pure): To | |
2069 | __pure_virtual. | |
2070 | ||
38a07297 JM |
2071 | 2007-05-07 Jason Merrill <jason@redhat.com> |
2072 | ||
04055200 JM |
2073 | * include/bits/ostream.tcc (operator<<(char*)): Add __s. |
2074 | ||
38a07297 JM |
2075 | * config/abi/pre/gnu.ver: Fix symbol versions. |
2076 | * config/abi/pre/gnu-versioned-namespace.ver: Likewise. | |
2077 | ||
21fe0282 DS |
2078 | 2007-05-07 Danny Smith <dannysmith@users.sourceforge.net> |
2079 | ||
2080 | * config/os/mingw32/os_defines.h (NOMINMAX): Update comment. | |
2081 | ||
d05f74f1 JM |
2082 | 2007-05-07 Jason Merrill <jason@redhat.com> |
2083 | ||
2084 | PR c++/28145 | |
2085 | * libsupc++/cxxabi.h (__forced_unwind, __foreign_exception): | |
2086 | New classes. | |
2087 | * libsupc++/eh_exception.cc: Define their destructors. | |
2088 | * config/abi/pre/gnu.ver: Export their type_infos. | |
2089 | * config/abi/pre/gnu-versioned-namespace.ver: Likewise. | |
2090 | * libsupc++/eh_personality.cc: A handler for abi::__forced_unwind | |
2091 | matches a forced unwind, and a handler for abi::__foreign_exception | |
2092 | matches a foreign exception. | |
2093 | ||
2094 | * include/bits/istream.tcc: Rethrow forced unwind. | |
2095 | * include/bits/ostream.tcc: Likewise. | |
2096 | * include/bits/ostream_insert.h: Likewise. | |
2097 | * include/bits/basic_string.tcc (operator>>, getline): Likewise. | |
2098 | * include/bits/fstream.tcc (basic_filebuf::close): Likewise. | |
2099 | * include/ext/vstring.cc (operator>>, getline): Likewise. | |
2100 | * src/istream.cc: Likewise. | |
2101 | * src/compatibility.cc (basic_istream::ignore): Likewise. | |
2102 | * include/std/bitset (operator>>): Likewise. | |
2103 | * include/std/fstream (basic_filebuf::close): Remove throw() spec. | |
2104 | * libsupc++/cxxabi-internal.h: Split out from... | |
2105 | * libsupc++/cxxabi.h: ...here. | |
2106 | ||
360721e3 PC |
2107 | 2007-05-07 Paolo Carlini <pcarlini@suse.de> |
2108 | ||
2109 | * include/bits/stl_algobase.h: Do not include <cstring>. | |
2110 | (copy(const _Tp*, const _Tp*, _Tp*), __copy_b(const _Tp*, const _Tp*, | |
2111 | _Tp*)): Use __builtin_memmove. | |
2112 | (__fill_aux): Use __builtin_memset. | |
2113 | (equal(const _Tp*, const _Tp*, const _Tp*), | |
2114 | lexicographical_compare(const unsigned char*, const unsigned char*, | |
2115 | const unsigned char*, const unsigned char*)): Use __builtin_memcmp. | |
f3cdfb88 | 2116 | * include/bits/valarray_array.h: Do not include <cstring>. |
360721e3 PC |
2117 | (_Array_default_ctor<, true>::_S_do_it): Use __builtin_memset. |
2118 | (_Array_copy_ctor<, true>::_S_do_it, _Array_copier<, true>::_S_do_it): | |
2119 | Use __builtin_memcpy. | |
2120 | * include/ext/algorithm | |
2121 | (__lexicographical_compare_3way(const unsigned char*, | |
2122 | const unsigned char*, const unsigned char*, const unsigned char*)): | |
2123 | Use __builtin_memcmp. | |
2124 | * testsuite/23_containers/vector/requirements/dr438/ | |
2125 | constructor_1_neg.cc: Adjust dg-error line number. | |
2126 | * testsuite/23_containers/vector/requirements/dr438/ | |
2127 | constructor_2_neg.cc: Likewise. | |
2128 | ||
7504beb4 MM |
2129 | 2007-05-07 Mark Mitchell <mark@codesourcery.com> |
2130 | ||
357480ce MM |
2131 | * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): For |
2132 | installed-tree testing, search more include directories. | |
2133 | ||
adcbdf5c MM |
2134 | * testsuite/22_locale/num_put/put/char/14220.cc: XFAIL on Solaris |
2135 | 2.10. | |
2136 | * testsuite/22_locale/num_put/put/wchar_t/14220.cc: Likewise. | |
2137 | ||
7504beb4 MM |
2138 | * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): In |
2139 | installed-tree testing, use "remote_exec host", not "remote_exec | |
2140 | exec". Trip trailing newlines from output of -dumpversion and | |
2141 | -dumpmachine. | |
2142 | ||
ce2e6349 BK |
2143 | 2007-05-07 Benjamin Kosnik <bkoz@redhat.com> |
2144 | Howard Hinnant <hhinnant@apple.com> | |
2145 | ||
2146 | * include/std/type_traits: (make_signed, make_unsigned): Adjust | |
2147 | for enum sizes. | |
2148 | * testsuite/20_util/make_unsigned/requirements/typedefs.cc: Move to... | |
2149 | * testsuite/20_util/make_unsigned/requirements/typedefs-1.cc: ...here. | |
2150 | * testsuite/20_util/make_unsigned/requirements/typedefs-2.cc: Add, | |
2151 | compile with -funsigned-char -fshort-enums. | |
2152 | * testsuite/20_util/make_signed/requirements/typedefs.cc: Move to... | |
2153 | * testsuite/20_util/make_signed/requirements/typedefs-1.cc: ...here. | |
2154 | * testsuite/20_util/make_signed/requirements/typedefs-2.cc: Add, | |
2155 | compile with -funsigned-char -fshort-enums. | |
2156 | ||
2157 | * testsuite/20_util/headers/type_traits/types_std_c++0x_neg.cc: | |
2158 | Add a temporary xfail to this test for all platforms. | |
2159 | ||
74b332b8 PC |
2160 | 2007-05-06 Paolo Carlini <pcarlini@suse.de> |
2161 | ||
2162 | * include/std/complex: Add missing extern template declarations. | |
2163 | * testsuite/26_numerics/complex/complex_inserters_extractors.cc: | |
2164 | Move... | |
2165 | * testsuite/26_numerics/complex/inserters_extractors/char/1.cc: | |
2166 | ... here. | |
2167 | * testsuite/26_numerics/complex/inserters_extractors/wchar_t/1.cc: | |
2168 | New. | |
2169 | ||
02537534 PC |
2170 | 2007-05-06 Paolo Carlini <pcarlini@suse.de> |
2171 | ||
e7a5fbdc | 2172 | PR libstdc++/31834 |
02537534 PC |
2173 | * testsuite/17_intro/headers/c++200x/all.cc: Protect inclusion |
2174 | of C99 headers. | |
2175 | * testsuite/17_intro/headers/c++200x/all_multiple_inclusion.cc: | |
2176 | Likewise. | |
2177 | ||
19df3b83 PC |
2178 | 2007-05-06 Paolo Carlini <pcarlini@suse.de> |
2179 | ||
2180 | * config/locale/generic/c_locale.cc: Don't use __builtin_huge_val* | |
2181 | when __*_HAS_INFINITY__ is false. | |
2182 | ||
558ef0f7 PC |
2183 | 2007-05-04 Paolo Carlini <pcarlini@suse.de> |
2184 | ||
2185 | * include/bits/stl_raw_storage_iter.h (class raw_storage_iterator): | |
2186 | Adjust template parameter name. | |
2187 | ||
88e6c947 MM |
2188 | 2007-05-04 Mark Mitchell <mark@codesourcery.com> |
2189 | ||
2190 | * libsupc++/cxxabi.h (__cxa_atexit): Conditionalize exception | |
2191 | specification on #ifdef __cplusplus. | |
2192 | ||
acb8a4ef PC |
2193 | 2007-05-04 Paolo Carlini <pcarlini@suse.de> |
2194 | ||
2195 | * include/bits/stl_memory.h: Rename to stl_auto_ptr.h. | |
2196 | (__get_temporary_buffer, get_temporary_buffer, | |
2197 | return_temporary_buffer): Move... | |
2198 | * include/bits/stl_tempbuf.h: ... here. | |
2199 | * include/std/memory: Adjust includes. | |
2200 | * testsuite/20_util/auto_ptr/assign_neg.cc: Adjust dg-error line | |
2201 | numbers. | |
2202 | * include/Makefile.am: Adjust. | |
2203 | * include/Makefile.in: Regenerate. | |
2204 | ||
2205 | * testsuite/util/testsuite_iterators.h: Do not include the entire | |
2206 | <iterator>. | |
2207 | * include/bits/stl_iterator_base_types.h: Adjust includes. | |
2208 | * testsuite/25_algorithms/unique_copy/2.cc: Include <functional>. | |
2209 | ||
aa2bd2db MM |
2210 | 2007-05-04 Mark Mitchell <mark@codesourcery.com> |
2211 | ||
2212 | * libsupc++/atexit_arm.cc: New file. | |
2213 | * libsupc++/vec.cc (__aeabi_atexit): Remove. | |
2214 | * libsupc++/cxxabi.h (__cxa_atexit): Add exception specification. | |
88e6c947 | 2215 | |
aa2bd2db MM |
2216 | * libsupc++/Makefile.am: Add atexit_arm.cc. |
2217 | * libsupc++/Makefile.in: Regenerated. | |
2218 | ||
c531371e PC |
2219 | 2007-05-04 Paolo Carlini <pcarlini@suse.de> |
2220 | ||
2221 | * include/bits/stl_construct.h (_Destroy(_ForwardIterator, | |
2222 | _ForwardIterator __last, _Allocator)): Change the last parameter | |
2223 | to _Allocator&. | |
2224 | * include/bits/stl_uninitialized.h (__uninitialized_copy_a, | |
2225 | __uninitialized_fill_a, __uninitialized_fill_n_a, | |
2226 | __uninitialized_fill_copy, __uninitialized_copy_fill, | |
2227 | __uninitialized_copy_copy): Likewise. | |
2228 | * include/ext/rope: Adjust everywhere. | |
2229 | * include/ext/ropeimpl.h: Likewise. | |
2230 | ||
7b50cdef BK |
2231 | 2007-05-03 Benjamin Kosnik <bkoz@redhat.com> |
2232 | ||
2233 | * include/std/type_traits (enable_if): New. | |
2234 | (conditional): New. | |
2235 | (__decay_selector, decay): New. | |
2236 | (__cv_selector, __match_cv_qualifiers): New. | |
2237 | (__make_unsigned, __make_unsigned_selector, make_unsigned): New. | |
2238 | (__make_signed, __make_signed_selector, make_signed): New. | |
2239 | (has_trivial_constructor): ... to has_trivial_default_constructor. | |
2240 | (has_nothrow_constructor): ... to has_nothrow_default_constructor. | |
2241 | (has_trivial_copy): ... to has_trivial_copy_constructor. | |
2242 | (has_nothrow_copy): ... to has_nothrow_copy_constructor. | |
2243 | ||
2244 | * include/tr1/type_traits_fwd: Move to... | |
2245 | * include/tr1/type_traitsfwd: ... this, consistency with | |
2246 | ios/string/locale forward headers. | |
2247 | * include/tr1/type_traits: Adjust include. | |
2248 | * include/Makefile.am (tr1_headers): Change type_traits_fwd.h to | |
2249 | type_traitsfwd.h. | |
2250 | * include/Makefile.in: Regenerate. | |
2251 | ||
2252 | * testsuite/23_containers/tuple: Move... | |
2253 | * testsuite/20_util/tuple:... here. | |
2254 | ||
2255 | * testsuite/20_util/conditional: New. | |
2256 | * testsuite/20_util/conditional/requirements: Same. | |
2257 | * testsuite/20_util/conditional/requirements/ | |
2258 | explicit_instantiation.cc: Same. | |
2259 | * testsuite/20_util/conditional/requirements/typedefs.cc: Same. | |
2260 | * testsuite/20_util/decay: Same. | |
2261 | * testsuite/20_util/decay/requirements: Same. | |
2262 | * testsuite/20_util/decay/requirements/explicit_instantiation.cc: Same. | |
2263 | * testsuite/20_util/decay/requirements/typedefs.cc: Same. | |
2264 | * testsuite/20_util/enable_if: Same. | |
2265 | * testsuite/20_util/enable_if/requirements: Same. | |
2266 | * testsuite/20_util/enable_if/requirements/ | |
2267 | explicit_instantiation.cc: Same. | |
2268 | * testsuite/20_util/enable_if/requirements/typedefs.cc: Same. | |
2269 | * testsuite/20_util/enable_if/requirements/typedefs_neg.cc: Same. | |
2270 | * testsuite/20_util/has_nothrow_copy_constructor: Same. | |
2271 | * testsuite/20_util/has_nothrow_copy_constructor/requirements: Same. | |
2272 | * testsuite/20_util/has_nothrow_copy_constructor/requirements/ | |
2273 | explicit_instantiation.cc: Same. | |
2274 | * testsuite/20_util/has_nothrow_copy_constructor/requirements/ | |
2275 | typedefs.cc: Same. | |
2276 | * testsuite/20_util/has_nothrow_copy_constructor/value.cc: Same. | |
2277 | * testsuite/20_util/has_nothrow_default_constructor: Same. | |
2278 | * testsuite/20_util/has_nothrow_default_constructor/requirements: Same. | |
2279 | * testsuite/20_util/has_nothrow_default_constructor/requirements/ | |
2280 | explicit_instantiation.cc: Same. | |
2281 | * testsuite/20_util/has_nothrow_default_constructor/requirements/ | |
2282 | typedefs.cc: Same. | |
2283 | * testsuite/20_util/has_nothrow_default_constructor/value.cc: Same. | |
2284 | * testsuite/20_util/has_trivial_copy_constructor: Same. | |
2285 | * testsuite/20_util/has_trivial_copy_constructor/requirements: Same. | |
2286 | * testsuite/20_util/has_trivial_copy_constructor/requirements/ | |
2287 | explicit_instantiation.cc: Same. | |
2288 | * testsuite/20_util/has_trivial_copy_constructor/requirements/ | |
2289 | typedefs.cc: Same. | |
2290 | * testsuite/20_util/has_trivial_copy_constructor/value.cc: Same. | |
2291 | * testsuite/20_util/has_trivial_default_constructor: Same. | |
2292 | * testsuite/20_util/has_trivial_default_constructor/requirements: Same. | |
2293 | * testsuite/20_util/has_trivial_default_constructor/requirements/ | |
2294 | explicit_instantiation.cc: Same. | |
2295 | * testsuite/20_util/has_trivial_default_constructor/requirements/ | |
2296 | typedefs.cc: Same. | |
2297 | * testsuite/20_util/has_trivial_default_constructor/value.cc: Same. | |
2298 | * testsuite/20_util/headers/type_traits/types_std_c++0x_neg.cc: Same. | |
2299 | * testsuite/20_util/make_signed: Same. | |
2300 | * testsuite/20_util/make_signed/requirements: Same. | |
2301 | * testsuite/20_util/make_signed/requirements/ | |
2302 | explicit_instantiation.cc: Same. | |
2303 | * testsuite/20_util/make_signed/requirements/typedefs.cc: Same. | |
2304 | * testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same. | |
2305 | * testsuite/20_util/make_unsigned: Same. | |
2306 | * testsuite/20_util/make_unsigned/requirements: Same. | |
2307 | * testsuite/20_util/make_unsigned/requirements/ | |
2308 | explicit_instantiation.cc: Same. | |
2309 | * testsuite/20_util/make_unsigned/requirements/typedefs.cc: Same. | |
2310 | * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same. | |
2311 | ||
d4083c80 PC |
2312 | 2007-05-02 Paolo Carlini <pcarlini@suse.de> |
2313 | ||
2314 | PR libstdc++/31777 | |
2315 | * include/ext/pool_allocator.h (__pool_alloc<>::allocate, | |
2316 | __pool_alloc<>::deallocate): Fix _S_force_new check. | |
2317 | ||
d0700ca3 BK |
2318 | 2007-05-01 Benjamin Kosnik <bkoz@redhat.com> |
2319 | ||
2320 | * 23_containers/requirements/sequences/dr438/deque/*: Move to... | |
2321 | * 23_containers/deque/requirements/dr438: ...here. | |
2322 | ||
2323 | * 23_containers/requirements/sequences/dr438/list/*: Move to... | |
2324 | * 23_containers/list/requirements/dr438: ...here. | |
2325 | ||
2326 | * 23_containers/requirements/sequences/dr438/vector/*: Move to... | |
2327 | * 23_containers/vector/requirements/dr438: ...here. | |
2328 | ||
953415a2 BK |
2329 | 2007-05-01 Benjamin Kosnik <bkoz@redhat.com> |
2330 | ||
93f79c2a BK |
2331 | * testsuite/*/explicit_instantiations.cc: Change to... |
2332 | * testsuite/*/explicit_instantiation.cc: ... this. | |
2333 | ||
2334 | 2007-05-01 Benjamin Kosnik <bkoz@redhat.com> | |
2335 | ||
2336 | * testsuite/tr1/4_metaprogramming/*/explicit_instantiations.cc: Change | |
953415a2 BK |
2337 | "basic_ofstream" in comment to type_traits. |
2338 | ||
39dd88f0 BK |
2339 | 2007-04-30 Benjamin Kosnik <bkoz@redhat.com> |
2340 | ||
2341 | Directory layout flattening. | |
2342 | ||
2343 | Added in testsuite: | |
2344 | * tr1/4_metaprogramming/add_const | |
2345 | * tr1/4_metaprogramming/add_const/requirements | |
2346 | * tr1/4_metaprogramming/add_const/requirements/ | |
2347 | explicit_instantiations.cc | |
2348 | * tr1/4_metaprogramming/add_const/requirements/typedefs.cc | |
2349 | * tr1/4_metaprogramming/add_cv | |
2350 | * tr1/4_metaprogramming/add_cv/requirements | |
2351 | * tr1/4_metaprogramming/add_cv/requirements/explicit_instantiations.cc | |
2352 | * tr1/4_metaprogramming/add_cv/requirements/typedefs.cc | |
2353 | * tr1/4_metaprogramming/add_pointer | |
2354 | * tr1/4_metaprogramming/add_pointer/requirements | |
2355 | * tr1/4_metaprogramming/add_pointer/requirements/ | |
2356 | explicit_instantiations.cc | |
2357 | * tr1/4_metaprogramming/add_pointer/requirements/typedefs.cc | |
2358 | * tr1/4_metaprogramming/add_reference | |
2359 | * tr1/4_metaprogramming/add_reference/requirements | |
2360 | * tr1/4_metaprogramming/add_reference/requirements/ | |
2361 | explicit_instantiations.cc | |
2362 | * tr1/4_metaprogramming/add_reference/requirements/typedefs.cc | |
2363 | * tr1/4_metaprogramming/add_volatile | |
2364 | * tr1/4_metaprogramming/add_volatile/requirements | |
2365 | * tr1/4_metaprogramming/add_volatile/requirements/ | |
2366 | explicit_instantiations.cc | |
2367 | * tr1/4_metaprogramming/add_volatile/requirements/typedefs.cc | |
2368 | * tr1/4_metaprogramming/aligned_storage | |
2369 | * tr1/4_metaprogramming/aligned_storage/requirements | |
2370 | * tr1/4_metaprogramming/aligned_storage/requirements/ | |
2371 | explicit_instantiations.cc | |
2372 | * tr1/4_metaprogramming/aligned_storage/requirements/typedefs.cc | |
2373 | * tr1/4_metaprogramming/alignment_of | |
2374 | * tr1/4_metaprogramming/alignment_of/requirements | |
2375 | * tr1/4_metaprogramming/alignment_of/requirements/ | |
2376 | explicit_instantiations.cc | |
2377 | * tr1/4_metaprogramming/alignment_of/requirements/typedefs.cc | |
2378 | * tr1/4_metaprogramming/alignment_of/value.cc | |
2379 | * tr1/4_metaprogramming/extent | |
2380 | * tr1/4_metaprogramming/extent/requirements | |
2381 | * tr1/4_metaprogramming/extent/requirements/explicit_instantiations.cc | |
2382 | * tr1/4_metaprogramming/extent/requirements/typedefs.cc | |
2383 | * tr1/4_metaprogramming/extent/value.cc | |
2384 | * tr1/4_metaprogramming/has_nothrow_assign | |
2385 | * tr1/4_metaprogramming/has_nothrow_assign/requirements | |
2386 | * tr1/4_metaprogramming/has_nothrow_assign/requirements/ | |
2387 | explicit_instantiations.cc | |
2388 | * tr1/4_metaprogramming/has_nothrow_assign/requirements/typedefs.cc | |
2389 | * tr1/4_metaprogramming/has_nothrow_assign/value.cc | |
2390 | * tr1/4_metaprogramming/has_nothrow_constructor | |
2391 | * tr1/4_metaprogramming/has_nothrow_constructor/requirements | |
2392 | * tr1/4_metaprogramming/has_nothrow_constructor/ | |
2393 | requirements/explicit_instantiations.cc | |
2394 | * tr1/4_metaprogramming/has_nothrow_constructor/ | |
2395 | requirements/typedefs.cc | |
2396 | * tr1/4_metaprogramming/has_nothrow_constructor/value.cc | |
2397 | * tr1/4_metaprogramming/has_nothrow_copy | |
2398 | * tr1/4_metaprogramming/has_nothrow_copy/requirements | |
2399 | * tr1/4_metaprogramming/has_nothrow_copy/requirements/ | |
2400 | explicit_instantiations.cc | |
2401 | * tr1/4_metaprogramming/has_nothrow_copy/requirements/typedefs.cc | |
2402 | * tr1/4_metaprogramming/has_nothrow_copy/value.cc | |
2403 | * tr1/4_metaprogramming/has_trivial_assign | |
2404 | * tr1/4_metaprogramming/has_trivial_assign/requirements | |
2405 | * tr1/4_metaprogramming/has_trivial_assign/requirements/ | |
2406 | explicit_instantiations.cc | |
2407 | * tr1/4_metaprogramming/has_trivial_assign/requirements/typedefs.cc | |
2408 | * tr1/4_metaprogramming/has_trivial_assign/value.cc | |
2409 | * tr1/4_metaprogramming/has_trivial_constructor | |
2410 | * tr1/4_metaprogramming/has_trivial_constructor/requirements | |
2411 | * tr1/4_metaprogramming/has_trivial_constructor/ | |
2412 | requirements/explicit_instantiations.cc | |
2413 | * tr1/4_metaprogramming/has_trivial_constructor/ | |
2414 | requirements/typedefs.cc | |
2415 | * tr1/4_metaprogramming/has_trivial_constructor/value.cc | |
2416 | * tr1/4_metaprogramming/has_trivial_copy | |
2417 | * tr1/4_metaprogramming/has_trivial_copy/requirements | |
2418 | * tr1/4_metaprogramming/has_trivial_copy/ | |
2419 | requirements/explicit_instantiations.cc | |
2420 | * tr1/4_metaprogramming/has_trivial_copy/requirements/typedefs.cc | |
2421 | * tr1/4_metaprogramming/has_trivial_copy/value.cc | |
2422 | * tr1/4_metaprogramming/has_trivial_destructor | |
2423 | * tr1/4_metaprogramming/has_trivial_destructor/requirements | |
2424 | * tr1/4_metaprogramming/has_trivial_destructor/ | |
2425 | requirements/explicit_instantiations.cc | |
2426 | * tr1/4_metaprogramming/has_trivial_destructor/requirements/typedefs.cc | |
2427 | * tr1/4_metaprogramming/has_trivial_destructor/value.cc | |
2428 | * tr1/4_metaprogramming/has_virtual_destructor | |
2429 | * tr1/4_metaprogramming/has_virtual_destructor/requirements | |
2430 | * tr1/4_metaprogramming/has_virtual_destructor/ | |
2431 | requirements/explicit_instantiations.cc | |
2432 | * tr1/4_metaprogramming/has_virtual_destructor/requirements/typedefs.cc | |
2433 | * tr1/4_metaprogramming/has_virtual_destructor/value.cc | |
2434 | * tr1/4_metaprogramming/integral_constant | |
2435 | * tr1/4_metaprogramming/integral_constant/requirements | |
2436 | * tr1/4_metaprogramming/integral_constant/ | |
2437 | requirements/explicit_instantiations.cc | |
2438 | * tr1/4_metaprogramming/integral_constant/requirements/typedefs.cc | |
2439 | * tr1/4_metaprogramming/integral_constant/true_false_value.cc | |
2440 | * tr1/4_metaprogramming/is_abstract | |
2441 | * tr1/4_metaprogramming/is_abstract/requirements | |
2442 | * tr1/4_metaprogramming/is_abstract/ | |
2443 | requirements/explicit_instantiations.cc | |
2444 | * tr1/4_metaprogramming/is_abstract/requirements/typedefs.cc | |
2445 | * tr1/4_metaprogramming/is_abstract/value.cc | |
2446 | * tr1/4_metaprogramming/is_arithmetic | |
2447 | * tr1/4_metaprogramming/is_arithmetic/requirements | |
2448 | * tr1/4_metaprogramming/is_arithmetic/ | |
2449 | requirements/explicit_instantiations.cc | |
2450 | * tr1/4_metaprogramming/is_arithmetic/requirements/typedefs.cc | |
2451 | * tr1/4_metaprogramming/is_arithmetic/value.cc | |
2452 | * tr1/4_metaprogramming/is_array | |
2453 | * tr1/4_metaprogramming/is_array/requirements | |
2454 | * tr1/4_metaprogramming/is_array/ | |
2455 | requirements/explicit_instantiations.cc | |
2456 | * tr1/4_metaprogramming/is_array/requirements/typedefs.cc | |
2457 | * tr1/4_metaprogramming/is_array/value.cc | |
2458 | * tr1/4_metaprogramming/is_base_of | |
2459 | * tr1/4_metaprogramming/is_base_of/requirements | |
2460 | * tr1/4_metaprogramming/is_base_of/ | |
2461 | requirements/explicit_instantiations.cc | |
2462 | * tr1/4_metaprogramming/is_base_of/requirements/typedefs.cc | |
2463 | * tr1/4_metaprogramming/is_base_of/value.cc | |
2464 | * tr1/4_metaprogramming/is_class | |
2465 | * tr1/4_metaprogramming/is_class/requirements | |
2466 | * tr1/4_metaprogramming/is_class/ | |
2467 | requirements/explicit_instantiations.cc | |
2468 | * tr1/4_metaprogramming/is_class/requirements/typedefs.cc | |
2469 | * tr1/4_metaprogramming/is_class/value.cc | |
2470 | * tr1/4_metaprogramming/is_compound | |
2471 | * tr1/4_metaprogramming/is_compound/requirements | |
2472 | * tr1/4_metaprogramming/is_compound/ | |
2473 | requirements/explicit_instantiations.cc | |
2474 | * tr1/4_metaprogramming/is_compound/requirements/typedefs.cc | |
2475 | * tr1/4_metaprogramming/is_compound/value.cc | |
2476 | * tr1/4_metaprogramming/is_const | |
2477 | * tr1/4_metaprogramming/is_const/requirements | |
2478 | * tr1/4_metaprogramming/is_const/ | |
2479 | requirements/explicit_instantiations.cc | |
2480 | * tr1/4_metaprogramming/is_const/requirements/typedefs.cc | |
2481 | * tr1/4_metaprogramming/is_const/value.cc | |
2482 | * tr1/4_metaprogramming/is_convertible | |
2483 | * tr1/4_metaprogramming/is_convertible/requirements | |
2484 | * tr1/4_metaprogramming/is_convertible/ | |
2485 | requirements/explicit_instantiations.cc | |
2486 | * tr1/4_metaprogramming/is_convertible/requirements/typedefs.cc | |
2487 | * tr1/4_metaprogramming/is_convertible/value.cc | |
2488 | * tr1/4_metaprogramming/is_empty | |
2489 | * tr1/4_metaprogramming/is_empty/requirements | |
2490 | * tr1/4_metaprogramming/is_empty/requirements/ | |
2491 | explicit_instantiations.cc | |
2492 | * tr1/4_metaprogramming/is_empty/requirements/typedefs.cc | |
2493 | * tr1/4_metaprogramming/is_empty/value.cc | |
2494 | * tr1/4_metaprogramming/is_enum | |
2495 | * tr1/4_metaprogramming/is_enum/requirements | |
2496 | * tr1/4_metaprogramming/is_enum/requirements/explicit_instantiations.cc | |
2497 | * tr1/4_metaprogramming/is_enum/requirements/typedefs.cc | |
2498 | * tr1/4_metaprogramming/is_enum/value.cc | |
2499 | * tr1/4_metaprogramming/is_floating_point | |
2500 | * tr1/4_metaprogramming/is_floating_point/requirements | |
2501 | * tr1/4_metaprogramming/is_floating_point/requirements/ | |
2502 | explicit_instantiations.cc | |
2503 | * tr1/4_metaprogramming/is_floating_point/requirements/typedefs.cc | |
2504 | * tr1/4_metaprogramming/is_floating_point/value.cc | |
2505 | * tr1/4_metaprogramming/is_function | |
2506 | * tr1/4_metaprogramming/is_function/requirements | |
2507 | * tr1/4_metaprogramming/is_function/requirements/ | |
2508 | explicit_instantiations.cc | |
2509 | * tr1/4_metaprogramming/is_function/requirements/typedefs.cc | |
2510 | * tr1/4_metaprogramming/is_function/value.cc | |
2511 | * tr1/4_metaprogramming/is_fundamental | |
2512 | * tr1/4_metaprogramming/is_fundamental/requirements | |
2513 | * tr1/4_metaprogramming/is_fundamental/requirements/ | |
2514 | explicit_instantiations.cc | |
2515 | * tr1/4_metaprogramming/is_fundamental/requirements/typedefs.cc | |
2516 | * tr1/4_metaprogramming/is_fundamental/value.cc | |
2517 | * tr1/4_metaprogramming/is_integral | |
2518 | * tr1/4_metaprogramming/is_integral/requirements | |
2519 | * tr1/4_metaprogramming/is_integral/requirements/ | |
2520 | explicit_instantiations.cc | |
2521 | * tr1/4_metaprogramming/is_integral/requirements/typedefs.cc | |
2522 | * tr1/4_metaprogramming/is_integral/value.cc | |
2523 | * tr1/4_metaprogramming/is_member_function_pointer | |
2524 | * tr1/4_metaprogramming/is_member_function_pointer/requirements | |
2525 | * tr1/4_metaprogramming/is_member_function_pointer/ | |
2526 | requirements/explicit_instantiations.cc | |
2527 | * tr1/4_metaprogramming/is_member_function_pointer/ | |
2528 | requirements/typedefs.cc | |
2529 | * tr1/4_metaprogramming/is_member_function_pointer/value.cc | |
2530 | * tr1/4_metaprogramming/is_member_object_pointer | |
2531 | * tr1/4_metaprogramming/is_member_object_pointer/requirements | |
2532 | * tr1/4_metaprogramming/is_member_object_pointer/ | |
2533 | requirements/explicit_instantiations.cc | |
2534 | * tr1/4_metaprogramming/is_member_object_pointer/ | |
2535 | requirements/typedefs.cc | |
2536 | * tr1/4_metaprogramming/is_member_object_pointer/value.cc | |
2537 | * tr1/4_metaprogramming/is_member_pointer | |
2538 | * tr1/4_metaprogramming/is_member_pointer/requirements | |
2539 | * tr1/4_metaprogramming/is_member_pointer/requirements/ | |
2540 | explicit_instantiations.cc | |
2541 | * tr1/4_metaprogramming/is_member_pointer/requirements/typedefs.cc | |
2542 | * tr1/4_metaprogramming/is_member_pointer/value.cc | |
2543 | * tr1/4_metaprogramming/is_object | |
2544 | * tr1/4_metaprogramming/is_object/requirements | |
2545 | * tr1/4_metaprogramming/is_object/requirements/ | |
2546 | explicit_instantiations.cc | |
2547 | * tr1/4_metaprogramming/is_object/requirements/typedefs.cc | |
2548 | * tr1/4_metaprogramming/is_object/value.cc | |
2549 | * tr1/4_metaprogramming/is_pod | |
2550 | * tr1/4_metaprogramming/is_pod/requirements | |
2551 | * tr1/4_metaprogramming/is_pod/requirements/explicit_instantiations.cc | |
2552 | * tr1/4_metaprogramming/is_pod/requirements/typedefs.cc | |
2553 | * tr1/4_metaprogramming/is_pod/value.cc | |
2554 | * tr1/4_metaprogramming/is_pointer | |
2555 | * tr1/4_metaprogramming/is_pointer/requirements | |
2556 | * tr1/4_metaprogramming/is_pointer/requirements/ | |
2557 | explicit_instantiations.cc | |
2558 | * tr1/4_metaprogramming/is_pointer/requirements/typedefs.cc | |
2559 | * tr1/4_metaprogramming/is_pointer/value.cc | |
2560 | * tr1/4_metaprogramming/is_polymorphic | |
2561 | * tr1/4_metaprogramming/is_polymorphic/requirements | |
2562 | * tr1/4_metaprogramming/is_polymorphic/requirements/ | |
2563 | explicit_instantiations.cc | |
2564 | * tr1/4_metaprogramming/is_polymorphic/requirements/typedefs.cc | |
2565 | * tr1/4_metaprogramming/is_polymorphic/value.cc | |
2566 | * tr1/4_metaprogramming/is_reference | |
2567 | * tr1/4_metaprogramming/is_reference/requirements | |
2568 | * tr1/4_metaprogramming/is_reference/requirements/ | |
2569 | explicit_instantiations.cc | |
2570 | * tr1/4_metaprogramming/is_reference/requirements/typedefs.cc | |
2571 | * tr1/4_metaprogramming/is_reference/value.cc | |
2572 | * tr1/4_metaprogramming/is_same | |
2573 | * tr1/4_metaprogramming/is_same/requirements | |
2574 | * tr1/4_metaprogramming/is_same/requirements/explicit_instantiations.cc | |
2575 | * tr1/4_metaprogramming/is_same/requirements/typedefs.cc | |
2576 | * tr1/4_metaprogramming/is_same/value.cc | |
2577 | * tr1/4_metaprogramming/is_scalar | |
2578 | * tr1/4_metaprogramming/is_scalar/requirements | |
2579 | * tr1/4_metaprogramming/is_scalar/requirements/ | |
2580 | explicit_instantiations.cc | |
2581 | * tr1/4_metaprogramming/is_scalar/requirements/typedefs.cc | |
2582 | * tr1/4_metaprogramming/is_scalar/value.cc | |
2583 | * tr1/4_metaprogramming/is_signed | |
2584 | * tr1/4_metaprogramming/is_signed/requirements | |
2585 | * tr1/4_metaprogramming/is_signed/requirements/ | |
2586 | explicit_instantiations.cc | |
2587 | * tr1/4_metaprogramming/is_signed/requirements/typedefs.cc | |
2588 | * tr1/4_metaprogramming/is_signed/value.cc | |
2589 | * tr1/4_metaprogramming/is_union | |
2590 | * tr1/4_metaprogramming/is_union/requirements | |
2591 | * tr1/4_metaprogramming/is_union/requirements/ | |
2592 | explicit_instantiations.cc | |
2593 | * tr1/4_metaprogramming/is_union/requirements/typedefs.cc | |
2594 | * tr1/4_metaprogramming/is_union/value.cc | |
2595 | * tr1/4_metaprogramming/is_unsigned | |
2596 | * tr1/4_metaprogramming/is_unsigned/requirements | |
2597 | * tr1/4_metaprogramming/is_unsigned/requirements/ | |
2598 | explicit_instantiations.cc | |
2599 | * tr1/4_metaprogramming/is_unsigned/requirements/typedefs.cc | |
2600 | * tr1/4_metaprogramming/is_unsigned/value.cc | |
2601 | * tr1/4_metaprogramming/is_void | |
2602 | * tr1/4_metaprogramming/is_void/requirements | |
2603 | * tr1/4_metaprogramming/is_void/requirements/explicit_instantiations.cc | |
2604 | * tr1/4_metaprogramming/is_void/requirements/typedefs.cc | |
2605 | * tr1/4_metaprogramming/is_void/value.cc | |
2606 | * tr1/4_metaprogramming/is_volatile | |
2607 | * tr1/4_metaprogramming/is_volatile/requirements | |
2608 | * tr1/4_metaprogramming/is_volatile/requirements/ | |
2609 | explicit_instantiations.cc | |
2610 | * tr1/4_metaprogramming/is_volatile/requirements/typedefs.cc | |
2611 | * tr1/4_metaprogramming/is_volatile/value.cc | |
2612 | * tr1/4_metaprogramming/rank | |
2613 | * tr1/4_metaprogramming/rank/requirements | |
2614 | * tr1/4_metaprogramming/rank/requirements/explicit_instantiations.cc | |
2615 | * tr1/4_metaprogramming/rank/requirements/typedefs.cc | |
2616 | * tr1/4_metaprogramming/rank/value.cc | |
2617 | * tr1/4_metaprogramming/remove_all_extents | |
2618 | * tr1/4_metaprogramming/remove_all_extents/requirements | |
2619 | * tr1/4_metaprogramming/remove_all_extents/requirements/ | |
2620 | explicit_instantiations.cc | |
2621 | * tr1/4_metaprogramming/remove_all_extents/value.cc | |
2622 | * tr1/4_metaprogramming/remove_const | |
2623 | * tr1/4_metaprogramming/remove_const/requirements | |
2624 | * tr1/4_metaprogramming/remove_const/requirements/ | |
2625 | explicit_instantiations.cc | |
2626 | * tr1/4_metaprogramming/remove_const/value.cc | |
2627 | * tr1/4_metaprogramming/remove_cv | |
2628 | * tr1/4_metaprogramming/remove_cv/requirements | |
2629 | * tr1/4_metaprogramming/remove_cv/requirements/ | |
2630 | explicit_instantiations.cc | |
2631 | * tr1/4_metaprogramming/remove_cv/value.cc | |
2632 | * tr1/4_metaprogramming/remove_extent | |
2633 | * tr1/4_metaprogramming/remove_extent/requirements | |
2634 | * tr1/4_metaprogramming/remove_extent/requirements/ | |
2635 | explicit_instantiations.cc | |
2636 | * tr1/4_metaprogramming/remove_extent/value.cc | |
2637 | * tr1/4_metaprogramming/remove_pointer | |
2638 | * tr1/4_metaprogramming/remove_pointer/requirements | |
2639 | * tr1/4_metaprogramming/remove_pointer/requirements/ | |
2640 | explicit_instantiations.cc | |
2641 | * tr1/4_metaprogramming/remove_pointer/value.cc | |
2642 | * tr1/4_metaprogramming/remove_reference | |
2643 | * tr1/4_metaprogramming/remove_reference/requirements | |
2644 | * tr1/4_metaprogramming/remove_reference/requirements/ | |
2645 | explicit_instantiations.cc | |
2646 | * tr1/4_metaprogramming/remove_reference/value.cc | |
2647 | * tr1/4_metaprogramming/remove_volatile | |
2648 | * tr1/4_metaprogramming/remove_volatile/requirements | |
2649 | * tr1/4_metaprogramming/remove_volatile/requirements/ | |
2650 | explicit_instantiations.cc | |
2651 | * tr1/4_metaprogramming/remove_volatile/value.cc | |
2652 | ||
2653 | Deleted in testsuite: | |
2654 | * tr1/4_metaprogramming/alignment_of/alignment_of.cc | |
2655 | * tr1/4_metaprogramming/alignment_of/typedefs.cc | |
2656 | * tr1/4_metaprogramming/array_modifications | |
2657 | * tr1/4_metaprogramming/array_modifications/remove_all_extents.cc | |
2658 | * tr1/4_metaprogramming/array_modifications/remove_extent.cc | |
2659 | * tr1/4_metaprogramming/composite_type_traits | |
2660 | * tr1/4_metaprogramming/composite_type_traits/is_arithmetic | |
2661 | * tr1/4_metaprogramming/composite_type_traits/is_arithmetic/ | |
2662 | is_arithmetic.cc | |
2663 | * tr1/4_metaprogramming/composite_type_traits/is_arithmetic/typedefs.cc | |
2664 | * tr1/4_metaprogramming/composite_type_traits/is_compound | |
2665 | * tr1/4_metaprogramming/composite_type_traits/is_compound/ | |
2666 | is_compound.cc | |
2667 | * tr1/4_metaprogramming/composite_type_traits/is_compound/typedefs.cc | |
2668 | * tr1/4_metaprogramming/composite_type_traits/is_fundamental | |
2669 | * tr1/4_metaprogramming/composite_type_traits/is_fundamental/ | |
2670 | is_fundamental.cc | |
2671 | * tr1/4_metaprogramming/composite_type_traits/is_fundamental/ | |
2672 | typedefs.cc | |
2673 | * tr1/4_metaprogramming/composite_type_traits/is_member_pointer | |
2674 | * tr1/4_metaprogramming/composite_type_traits/is_member_pointer/ | |
2675 | is_member_pointer.cc | |
2676 | * tr1/4_metaprogramming/composite_type_traits/is_member_pointer/ | |
2677 | typedefs.cc | |
2678 | * tr1/4_metaprogramming/composite_type_traits/is_object | |
2679 | * tr1/4_metaprogramming/composite_type_traits/is_object/24808.cc | |
2680 | * tr1/4_metaprogramming/composite_type_traits/is_object/is_object.cc | |
2681 | * tr1/4_metaprogramming/composite_type_traits/is_object/typedefs.cc | |
2682 | * tr1/4_metaprogramming/composite_type_traits/is_scalar | |
2683 | * tr1/4_metaprogramming/composite_type_traits/is_scalar/is_scalar.cc | |
2684 | * tr1/4_metaprogramming/composite_type_traits/is_scalar/typedefs.cc | |
2685 | * tr1/4_metaprogramming/const_volatile_modifications | |
2686 | * tr1/4_metaprogramming/const_volatile_modifications/add_const.cc | |
2687 | * tr1/4_metaprogramming/const_volatile_modifications/add_cv.cc | |
2688 | * tr1/4_metaprogramming/const_volatile_modifications/add_volatile.cc | |
2689 | * tr1/4_metaprogramming/const_volatile_modifications/remove_const.cc | |
2690 | * tr1/4_metaprogramming/const_volatile_modifications/remove_cv.cc | |
2691 | * tr1/4_metaprogramming/const_volatile_modifications/remove_volatile.cc | |
2692 | * tr1/4_metaprogramming/extent/extent.cc | |
2693 | * tr1/4_metaprogramming/extent/typedefs.cc | |
2694 | * tr1/4_metaprogramming/has_nothrow_assign/has_nothrow_assign.cc | |
2695 | * tr1/4_metaprogramming/has_nothrow_assign/typedefs.cc | |
2696 | * tr1/4_metaprogramming/has_nothrow_constructor/ | |
2697 | has_nothrow_constructor.cc | |
2698 | * tr1/4_metaprogramming/has_nothrow_constructor/typedefs.cc | |
2699 | * tr1/4_metaprogramming/has_nothrow_copy/has_nothrow_copy.cc | |
2700 | * tr1/4_metaprogramming/has_nothrow_copy/typedefs.cc | |
2701 | * tr1/4_metaprogramming/has_trivial_assign/has_trivial_assign.cc | |
2702 | * tr1/4_metaprogramming/has_trivial_assign/typedefs.cc | |
2703 | * tr1/4_metaprogramming/has_trivial_constructor/ | |
2704 | has_trivial_constructor.cc | |
2705 | * tr1/4_metaprogramming/has_trivial_constructor/typedefs.cc | |
2706 | * tr1/4_metaprogramming/has_trivial_copy/has_trivial_copy.cc | |
2707 | * tr1/4_metaprogramming/has_trivial_copy/typedefs.cc | |
2708 | * tr1/4_metaprogramming/has_trivial_destructor/ | |
2709 | has_trivial_destructor.cc | |
2710 | * tr1/4_metaprogramming/has_trivial_destructor/typedefs.cc | |
2711 | * tr1/4_metaprogramming/has_virtual_destructor/ | |
2712 | has_virtual_destructor.cc | |
2713 | * tr1/4_metaprogramming/has_virtual_destructor/typedefs.cc | |
2714 | * tr1/4_metaprogramming/helper_classes | |
2715 | * tr1/4_metaprogramming/helper_classes/static_definition.cc | |
2716 | * tr1/4_metaprogramming/helper_classes/true_false_type.cc | |
2717 | * tr1/4_metaprogramming/helper_classes/true_false_type_typedefs.cc | |
2718 | * tr1/4_metaprogramming/helper_classes/typedefs.cc | |
2719 | * tr1/4_metaprogramming/integral_constant/true_false_type.cc | |
2720 | * tr1/4_metaprogramming/integral_constant/typedefs.cc | |
2721 | * tr1/4_metaprogramming/is_abstract/is_abstract.cc | |
2722 | * tr1/4_metaprogramming/is_abstract/typedefs.cc | |
2723 | * tr1/4_metaprogramming/is_arithmetic/is_arithmetic.cc | |
2724 | * tr1/4_metaprogramming/is_arithmetic/typedefs.cc | |
2725 | * tr1/4_metaprogramming/is_array/is_array.cc | |
2726 | * tr1/4_metaprogramming/is_array/typedefs.cc | |
2727 | * tr1/4_metaprogramming/is_base_of/is_base_of.cc | |
2728 | * tr1/4_metaprogramming/is_base_of/typedefs.cc | |
2729 | * tr1/4_metaprogramming/is_class/is_class.cc | |
2730 | * tr1/4_metaprogramming/is_class/typedefs.cc | |
2731 | * tr1/4_metaprogramming/is_compound/is_compound.cc | |
2732 | * tr1/4_metaprogramming/is_compound/typedefs.cc | |
2733 | * tr1/4_metaprogramming/is_const/is_const.cc | |
2734 | * tr1/4_metaprogramming/is_const/typedefs.cc | |
2735 | * tr1/4_metaprogramming/is_convertible/is_convertible.cc | |
2736 | * tr1/4_metaprogramming/is_convertible/typedefs.cc | |
2737 | * tr1/4_metaprogramming/is_empty/is_empty.cc | |
2738 | * tr1/4_metaprogramming/is_empty/typedefs.cc | |
2739 | * tr1/4_metaprogramming/is_enum/is_enum.cc | |
2740 | * tr1/4_metaprogramming/is_enum/typedefs.cc | |
2741 | * tr1/4_metaprogramming/is_floating_point/is_floating_point.cc | |
2742 | * tr1/4_metaprogramming/is_floating_point/typedefs.cc | |
2743 | * tr1/4_metaprogramming/is_function/is_function.cc | |
2744 | * tr1/4_metaprogramming/is_function/typedefs.cc | |
2745 | * tr1/4_metaprogramming/is_fundamental/is_fundamental.cc | |
2746 | * tr1/4_metaprogramming/is_fundamental/typedefs.cc | |
2747 | * tr1/4_metaprogramming/is_integral/is_integral.cc | |
2748 | * tr1/4_metaprogramming/is_integral/typedefs.cc | |
2749 | * tr1/4_metaprogramming/is_member_function_pointer/ | |
2750 | is_member_function_pointer.cc | |
2751 | * tr1/4_metaprogramming/is_member_function_pointer/typedefs.cc | |
2752 | * tr1/4_metaprogramming/is_member_object_pointer/ | |
2753 | is_member_object_pointer.cc | |
2754 | * tr1/4_metaprogramming/is_member_object_pointer/typedefs.cc | |
2755 | * tr1/4_metaprogramming/is_member_pointer/is_member_pointer.cc | |
2756 | * tr1/4_metaprogramming/is_member_pointer/typedefs.cc | |
2757 | * tr1/4_metaprogramming/is_object/is_object.cc | |
2758 | * tr1/4_metaprogramming/is_object/typedefs.cc | |
2759 | * tr1/4_metaprogramming/is_pod/is_pod.cc | |
2760 | * tr1/4_metaprogramming/is_pod/typedefs.cc | |
2761 | * tr1/4_metaprogramming/is_pointer/is_pointer.cc | |
2762 | * tr1/4_metaprogramming/is_pointer/typedefs.cc | |
2763 | * tr1/4_metaprogramming/is_polymorphic/is_polymorphic.cc | |
2764 | * tr1/4_metaprogramming/is_polymorphic/typedefs.cc | |
2765 | * tr1/4_metaprogramming/is_reference/is_reference.cc | |
2766 | * tr1/4_metaprogramming/is_reference/typedefs.cc | |
2767 | * tr1/4_metaprogramming/is_same/is_same.cc | |
2768 | * tr1/4_metaprogramming/is_same/typedefs.cc | |
2769 | * tr1/4_metaprogramming/is_scalar/is_scalar.cc | |
2770 | * tr1/4_metaprogramming/is_scalar/typedefs.cc | |
2771 | * tr1/4_metaprogramming/is_signed/is_signed.cc | |
2772 | * tr1/4_metaprogramming/is_signed/typedefs.cc | |
2773 | * tr1/4_metaprogramming/is_union/is_union.cc | |
2774 | * tr1/4_metaprogramming/is_union/typedefs.cc | |
2775 | * tr1/4_metaprogramming/is_unsigned/is_unsigned.cc | |
2776 | * tr1/4_metaprogramming/is_unsigned/typedefs.cc | |
2777 | * tr1/4_metaprogramming/is_void/is_void.cc | |
2778 | * tr1/4_metaprogramming/is_void/typedefs.cc | |
2779 | * tr1/4_metaprogramming/is_volatile/is_volatile.cc | |
2780 | * tr1/4_metaprogramming/is_volatile/typedefs.cc | |
2781 | * tr1/4_metaprogramming/other_transformations | |
2782 | * tr1/4_metaprogramming/other_transformations/aligned_storage | |
2783 | * tr1/4_metaprogramming/other_transformations/aligned_storage/ | |
2784 | aligned_storage.cc | |
2785 | * tr1/4_metaprogramming/other_transformations/aligned_storage/ | |
2786 | typedefs.cc | |
2787 | * tr1/4_metaprogramming/pointer_modifications | |
2788 | * tr1/4_metaprogramming/pointer_modifications/add_pointer.cc | |
2789 | * tr1/4_metaprogramming/pointer_modifications/remove_pointer.cc | |
2790 | * tr1/4_metaprogramming/primary_type_categories | |
2791 | * tr1/4_metaprogramming/primary_type_categories/is_array | |
2792 | * tr1/4_metaprogramming/primary_type_categories/is_array/is_array.cc | |
2793 | * tr1/4_metaprogramming/primary_type_categories/is_array/typedefs.cc | |
2794 | * tr1/4_metaprogramming/primary_type_categories/is_class | |
2795 | * tr1/4_metaprogramming/primary_type_categories/is_class/is_class.cc | |
2796 | * tr1/4_metaprogramming/primary_type_categories/is_class/typedefs.cc | |
2797 | * tr1/4_metaprogramming/primary_type_categories/is_enum | |
2798 | * tr1/4_metaprogramming/primary_type_categories/is_enum/24808.cc | |
2799 | * tr1/4_metaprogramming/primary_type_categories/is_enum/is_enum.cc | |
2800 | * tr1/4_metaprogramming/primary_type_categories/is_enum/typedefs.cc | |
2801 | * tr1/4_metaprogramming/primary_type_categories/is_floating_point | |
2802 | * tr1/4_metaprogramming/primary_type_categories/is_floating_point/ | |
2803 | is_floating_point.cc | |
2804 | * tr1/4_metaprogramming/primary_type_categories/is_floating_point/ | |
2805 | typedefs.cc | |
2806 | * tr1/4_metaprogramming/primary_type_categories/is_function | |
2807 | * tr1/4_metaprogramming/primary_type_categories/is_function/24808.cc | |
2808 | * tr1/4_metaprogramming/primary_type_categories/is_function/ | |
2809 | is_function.cc | |
2810 | * tr1/4_metaprogramming/primary_type_categories/is_function/typedefs.cc | |
2811 | * tr1/4_metaprogramming/primary_type_categories/is_integral | |
2812 | * tr1/4_metaprogramming/primary_type_categories/is_integral/ | |
2813 | is_integral.cc | |
2814 | * tr1/4_metaprogramming/primary_type_categories/is_integral/typedefs.cc | |
2815 | * tr1/4_metaprogramming/primary_type_categories/ | |
2816 | is_member_function_pointer | |
2817 | * tr1/4_metaprogramming/primary_type_categories/ | |
2818 | is_member_function_pointer/is_member_function_pointer.cc | |
2819 | * tr1/4_metaprogramming/primary_type_categories/ | |
2820 | is_member_function_pointer/typedefs.cc | |
2821 | * tr1/4_metaprogramming/primary_type_categories/ | |
2822 | is_member_object_pointer | |
2823 | * tr1/4_metaprogramming/primary_type_categories/ | |
2824 | is_member_object_pointer/is_member_object_pointer.cc | |
2825 | * tr1/4_metaprogramming/primary_type_categories/ | |
2826 | is_member_object_pointer/typedefs.cc | |
2827 | * tr1/4_metaprogramming/primary_type_categories/is_pointer | |
2828 | * tr1/4_metaprogramming/primary_type_categories/is_pointer/ | |
2829 | is_pointer.cc | |
2830 | * tr1/4_metaprogramming/primary_type_categories/is_pointer/typedefs.cc | |
2831 | * tr1/4_metaprogramming/primary_type_categories/is_reference | |
2832 | * tr1/4_metaprogramming/primary_type_categories/is_reference/ | |
2833 | is_reference.cc | |
2834 | * tr1/4_metaprogramming/primary_type_categories/is_reference/ | |
2835 | typedefs.cc | |
2836 | * tr1/4_metaprogramming/primary_type_categories/is_union | |
2837 | * tr1/4_metaprogramming/primary_type_categories/is_union/is_union.cc | |
2838 | * tr1/4_metaprogramming/primary_type_categories/is_union/typedefs.cc | |
2839 | * tr1/4_metaprogramming/primary_type_categories/is_void | |
2840 | * tr1/4_metaprogramming/primary_type_categories/is_void/is_void.cc | |
2841 | * tr1/4_metaprogramming/primary_type_categories/is_void/typedefs.cc | |
2842 | * tr1/4_metaprogramming/rank/rank.cc | |
2843 | * tr1/4_metaprogramming/rank/typedefs.cc | |
2844 | * tr1/4_metaprogramming/reference_modifications/add_reference.cc | |
2845 | * tr1/4_metaprogramming/reference_modifications/remove_reference.cc | |
2846 | * tr1/4_metaprogramming/relationships_between_types | |
2847 | * tr1/4_metaprogramming/relationships_between_types/is_base_of | |
2848 | * tr1/4_metaprogramming/relationships_between_types/is_base_of/ | |
2849 | is_base_of.cc | |
2850 | * tr1/4_metaprogramming/relationships_between_types/is_base_of/ | |
2851 | typedefs.cc | |
2852 | * tr1/4_metaprogramming/relationships_between_types/is_convertible | |
2853 | * tr1/4_metaprogramming/relationships_between_types/is_convertible/ | |
2854 | is_convertible.cc | |
2855 | * tr1/4_metaprogramming/relationships_between_types/is_convertible/ | |
2856 | typedefs.cc | |
2857 | * tr1/4_metaprogramming/relationships_between_types/is_same | |
2858 | * tr1/4_metaprogramming/relationships_between_types/is_same/is_same.cc | |
2859 | * tr1/4_metaprogramming/relationships_between_types/is_same/typedefs.cc | |
2860 | * tr1/4_metaprogramming/type_properties | |
2861 | * tr1/4_metaprogramming/type_properties/alignment_of | |
2862 | * tr1/4_metaprogramming/type_properties/alignment_of/alignment_of.cc | |
2863 | * tr1/4_metaprogramming/type_properties/alignment_of/typedefs.cc | |
2864 | * tr1/4_metaprogramming/type_properties/extent | |
2865 | * tr1/4_metaprogramming/type_properties/extent/extent.cc | |
2866 | * tr1/4_metaprogramming/type_properties/extent/typedefs.cc | |
2867 | * tr1/4_metaprogramming/type_properties/has_nothrow_assign | |
2868 | * tr1/4_metaprogramming/type_properties/has_nothrow_assign/ | |
2869 | has_nothrow_assign.cc | |
2870 | * tr1/4_metaprogramming/type_properties/has_nothrow_assign/typedefs.cc | |
2871 | * tr1/4_metaprogramming/type_properties/has_nothrow_constructor | |
2872 | * tr1/4_metaprogramming/type_properties/has_nothrow_constructor/ | |
2873 | has_nothrow_constructor.cc | |
2874 | * tr1/4_metaprogramming/type_properties/has_nothrow_constructor/ | |
2875 | typedefs.cc | |
2876 | * tr1/4_metaprogramming/type_properties/has_nothrow_copy | |
2877 | * tr1/4_metaprogramming/type_properties/has_nothrow_copy/ | |
2878 | has_nothrow_copy.cc | |
2879 | * tr1/4_metaprogramming/type_properties/has_nothrow_copy/typedefs.cc | |
2880 | * tr1/4_metaprogramming/type_properties/has_trivial_assign | |
2881 | * tr1/4_metaprogramming/type_properties/has_trivial_assign/ | |
2882 | has_trivial_assign.cc | |
2883 | * tr1/4_metaprogramming/type_properties/has_trivial_assign/typedefs.cc | |
2884 | * tr1/4_metaprogramming/type_properties/has_trivial_constructor | |
2885 | * tr1/4_metaprogramming/type_properties/has_trivial_constructor/ | |
2886 | has_trivial_constructor.cc | |
2887 | * tr1/4_metaprogramming/type_properties/has_trivial_constructor/ | |
2888 | typedefs.cc | |
2889 | * tr1/4_metaprogramming/type_properties/has_trivial_copy | |
2890 | * tr1/4_metaprogramming/type_properties/has_trivial_copy/ | |
2891 | has_trivial_copy.cc | |
2892 | * tr1/4_metaprogramming/type_properties/has_trivial_copy/typedefs.cc | |
2893 | * tr1/4_metaprogramming/type_properties/has_trivial_destructor | |
2894 | * tr1/4_metaprogramming/type_properties/has_trivial_destructor/ | |
2895 | has_trivial_destructor.cc | |
2896 | * tr1/4_metaprogramming/type_properties/has_trivial_destructor/ | |
2897 | typedefs.cc | |
2898 | * tr1/4_metaprogramming/type_properties/has_virtual_destructor | |
2899 | * tr1/4_metaprogramming/type_properties/has_virtual_destructor/ | |
2900 | has_virtual_destructor.cc | |
2901 | * tr1/4_metaprogramming/type_properties/has_virtual_destructor/ | |
2902 | typedefs.cc | |
2903 | * tr1/4_metaprogramming/type_properties/is_abstract | |
2904 | * tr1/4_metaprogramming/type_properties/is_abstract/is_abstract.cc | |
2905 | * tr1/4_metaprogramming/type_properties/is_abstract/typedefs.cc | |
2906 | * tr1/4_metaprogramming/type_properties/is_const | |
2907 | * tr1/4_metaprogramming/type_properties/is_const/is_const.cc | |
2908 | * tr1/4_metaprogramming/type_properties/is_const/typedefs.cc | |
2909 | * tr1/4_metaprogramming/type_properties/is_empty | |
2910 | * tr1/4_metaprogramming/type_properties/is_empty/is_empty.cc | |
2911 | * tr1/4_metaprogramming/type_properties/is_empty/typedefs.cc | |
2912 | * tr1/4_metaprogramming/type_properties/is_pod | |
2913 | * tr1/4_metaprogramming/type_properties/is_pod/is_pod.cc | |
2914 | * tr1/4_metaprogramming/type_properties/is_pod/typedefs.cc | |
2915 | * tr1/4_metaprogramming/type_properties/is_polymorphic | |
2916 | * tr1/4_metaprogramming/type_properties/is_polymorphic/24809.cc | |
2917 | * tr1/4_metaprogramming/type_properties/is_polymorphic/ | |
2918 | is_polymorphic.cc | |
2919 | * tr1/4_metaprogramming/type_properties/is_polymorphic/typedefs.cc | |
2920 | * tr1/4_metaprogramming/type_properties/is_signed | |
2921 | * tr1/4_metaprogramming/type_properties/is_signed/is_signed.cc | |
2922 | * tr1/4_metaprogramming/type_properties/is_signed/typedefs.cc | |
2923 | * tr1/4_metaprogramming/type_properties/is_unsigned | |
2924 | * tr1/4_metaprogramming/type_properties/is_unsigned/is_unsigned.cc | |
2925 | * tr1/4_metaprogramming/type_properties/is_unsigned/typedefs.cc | |
2926 | * tr1/4_metaprogramming/type_properties/is_volatile | |
2927 | * tr1/4_metaprogramming/type_properties/is_volatile/is_volatile.cc | |
2928 | * tr1/4_metaprogramming/type_properties/is_volatile/typedefs.cc | |
2929 | * tr1/4_metaprogramming/type_properties/rank | |
2930 | * tr1/4_metaprogramming/type_properties/rank/rank.cc | |
2931 | * tr1/4_metaprogramming/type_properties/rank/typedefs.cc | |
2932 | ||
8f1a19e2 HPN |
2933 | 2007-04-30 Hans-Peter Nilsson <hp@axis.com> |
2934 | ||
2935 | * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): Correct | |
2936 | regexp to filter out -nostdinc++. | |
2937 | ||
d22a3166 PC |
2938 | 2007-04-30 Paolo Carlini <pcarlini@suse.de> |
2939 | ||
2940 | PR libstdc++/30449 (equal) | |
2941 | * include/bits/stl_algobase.h (struct __niter_base): Add. | |
2942 | (copy(_II, _II, _OI), copy_backward(_BI1, _BI1, _BI2), | |
2943 | fill(_ForwardIterator, _ForwardIterator, const _Tp&), | |
2944 | fill_n(_OI, _Size, const _Tp&), equal(_II1, _II1, _II2)): | |
2945 | Use it. | |
2946 | (struct __copy_normal, __copy_backward_normal, | |
2947 | struct __fill_normal, struct __fill_n_normal): Remove. | |
2948 | (struct __equal, struct __equal_aux): Add. | |
2949 | * include/bits/stl_iterator.h: Add _Iterator_type typedef. | |
2950 | ||
2951 | * include/bits/stl_algobase.h (__fill_aux(wchar_t*, | |
2952 | wchar_t*, wchar_t), __fill_n_aux(wchar_t*, _Size, wchar_t)): | |
2953 | Remove. | |
2954 | ||
2955 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
2956 | constructor_1_neg.cc: Adjust dg-error line number. | |
2957 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
2958 | constructor_2_neg.cc: Likewise. | |
2959 | ||
6a7508ec PC |
2960 | 2007-04-30 Paolo Carlini <pcarlini@suse.de> |
2961 | ||
2962 | * include/tr1/type_traits (is_pod): Use __is_pod. | |
2963 | * testsuite/tr1/4_metaprogramming/type_properties/ | |
2964 | has_trivial_destructor/has_trivial_destructor.cc: Adjust. | |
2965 | * testsuite/tr1/4_metaprogramming/type_properties/ | |
2966 | has_nothrow_constructor/has_nothrow_constructor.cc: Likewise. | |
2967 | * testsuite/tr1/4_metaprogramming/type_properties/ | |
2968 | has_trivial_constructor/has_trivial_constructor.cc: Likewise. | |
2969 | * testsuite/tr1/4_metaprogramming/type_properties/ | |
2970 | is_pod/is_pod.cc: Likewise. | |
2971 | ||
677e29e1 PC |
2972 | 2007-04-29 Paolo Carlini <pcarlini@suse.de> |
2973 | ||
2974 | * include/bits/localefwd.h: Remove redundant inline qualifiers. | |
2975 | (__check_facet): Move... | |
2976 | * include/bits/basic_ios.h: ... here. | |
2977 | (widen(char), narrow(char_type, char)): Define inline. | |
2978 | * include/bits/basic_ios.tcc (widen(char), narrow(char_type, char)): | |
2979 | Remove. | |
2980 | ||
25959e29 PC |
2981 | 2007-04-27 Paolo Carlini <pcarlini@suse.de> |
2982 | ||
2983 | DR 438, [DR]. | |
2984 | * include/bits/basic_string.h (_S_construct_aux(_InIterator, | |
2985 | _InIterator, const _Alloc&, __true_type)): Do not cast the | |
2986 | second argument. | |
2987 | * include/ext/rc_string_base.h (_S_construct_aux(_Integer, | |
2988 | _Integer, const _Alloc&, std::__true_type)): Likewise. | |
2989 | * include/ext/sso_string_base.h (_M_construct_aux(_InIterator, | |
2990 | _InIterator, std::__true_type)): Likewise. | |
2991 | * include/bits/stl_deque.h (_M_initialize_dispatch(_Integer, | |
2992 | _Integer, __true_type)): Cast the first argument. | |
2993 | (_M_assign_dispatch(_Integer, _Integer, __true_type)): Do | |
2994 | not cast the arguments. | |
2995 | (_M_insert_dispatch(iterator, _Integer, _Integer, __true_type)): | |
2996 | Likewise. | |
2997 | * include/bits/stl_list.h (_M_initialize_dispatch(_Integer, | |
2998 | _Integer, __true_type)): Likewise. | |
2999 | (_M_assign_dispatch(_Integer, _Integer, __true_type)): Do | |
3000 | not cast both arguments. | |
3001 | * include/bits/stl_bvector.h (_M_initialize_dispatch(_Integer, | |
3002 | _Integer, __true_type)): Cast the first argument. | |
3003 | (_M_assign_dispatch(_Integer, _Integer, __true_type)): Do not | |
3004 | cast the arguments. | |
3005 | * include/bits/stl_vector.h (_M_initialize_dispatch(_Integer, | |
3006 | _Integer, __true_type)): Cast the first argument. | |
3007 | (_M_assign_dispatch(_Integer, _Integer, __true_type)): Do not | |
3008 | cast the arguments. | |
3009 | (_M_insert_dispatch(iterator, _Integer, _Integer, __true_type)): | |
3010 | Likewise. | |
3011 | * testsuite/21_strings/basic_string/requirements/dr438/ | |
3012 | constructor.cc: New. | |
3013 | * testsuite/ext/vstring/requirements/dr438/constructor.cc: Likewise. | |
3014 | * testsuite/23_containers/requirements/sequences/dr438/deque/ | |
3015 | assign_neg.cc: Likewise. | |
3016 | * testsuite/23_containers/requirements/sequences/dr438/deque/ | |
3017 | constructor.cc: Likewise. | |
3018 | * testsuite/23_containers/requirements/sequences/dr438/deque/ | |
3019 | constructor_1_neg.cc: Likewise. | |
3020 | * testsuite/23_containers/requirements/sequences/dr438/deque/ | |
3021 | constructor_1_neg.cc: Likewise. | |
3022 | * testsuite/23_containers/requirements/sequences/dr438/deque/ | |
3023 | insert_neg.cc: Likewise. | |
3024 | * testsuite/23_containers/requirements/sequences/dr438/list/ | |
3025 | assign_neg.cc: Likewise. | |
3026 | * testsuite/23_containers/requirements/sequences/dr438/list/ | |
3027 | constructor.cc: Likewise. | |
3028 | * testsuite/23_containers/requirements/sequences/dr438/list/ | |
3029 | constructor_1_neg.cc: Likewise. | |
3030 | * testsuite/23_containers/requirements/sequences/dr438/list/ | |
3031 | constructor_1_neg.cc: Likewise. | |
3032 | * testsuite/23_containers/requirements/sequences/dr438/list/ | |
3033 | insert_neg.cc: Likewise. | |
3034 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
3035 | assign_neg.cc: Likewise. | |
3036 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
3037 | constructor.cc: Likewise. | |
3038 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
3039 | constructor_1_neg.cc: Likewise. | |
3040 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
3041 | constructor_1_neg.cc: Likewise. | |
3042 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
3043 | insert_neg.cc: Likewise. | |
3044 | * testsuite/23_containers/requirements/sequences/dr438/vector/ | |
3045 | bool/constructor.cc: Likewise. | |
3046 | * docs/html/ext/howto.html: Add an entry for DR 438. | |
3047 | ||
dd42abcc PC |
3048 | 2007-04-25 Paolo Carlini <pcarlini@suse.de> |
3049 | ||
3050 | * include/bits/locale_classes.h: Remove redundant inline specifiers. | |
3051 | * include/bits/ios_base.h: Likewise. | |
3052 | * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust dg-error line | |
3053 | numbers. | |
3054 | * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise. | |
3055 | ||
84b31797 PC |
3056 | 2007-04-24 Paolo Carlini <pcarlini@suse.de> |
3057 | ||
3058 | * include/bits/locale_facets.h (class collate, class collate_byname): | |
3059 | Move... | |
3060 | * include/bits/locale_classes.h: ... here. | |
3061 | * include/bits/locale_facets.tcc (locale::combine, locale::operator(), | |
3062 | has_facet, use_facet, collate::_M_compare, collate::_M_transform, | |
3063 | collate::do_compare, collate::do_transform, collate::do_hash): Move... | |
3064 | * include/bits/locale_classes.tcc: ... here, new. | |
3065 | * include/Makefile.am: Add. | |
3066 | * testsuite/util/testsuite_abi.h: Include <locale>. | |
3067 | * include/std/locale: Tweak. | |
3068 | * include/std/istream: Likewise. | |
3069 | * include/std/ostream: Likewise. | |
3070 | * include/bits/codecvt.h: Likewise. | |
3071 | * include/Makefile.in: Regenerate. | |
3072 | ||
3073 | * include/bits/codecvt.h: Adjust extern template declarations. | |
3074 | * include/bits/ostream_insert.h: Likewise. | |
3075 | * include/bits/ostream.tcc: Likewise. | |
3076 | ||
3077 | * include/bits/locale_facets.h: Do not include <bits/codecvt.h>. | |
3078 | * include/std/fstream: Do it here. | |
3079 | * include/bits/locale_facets_nonio.h: Likewise. | |
3080 | ||
f749a55b PC |
3081 | 2007-04-23 Paolo Carlini <pcarlini@suse.de> |
3082 | ||
3083 | * include/bits/locale_facets.h (class time_base, | |
3084 | struct __timepunct_cache, class __timepunct, class time_get, | |
3085 | class time_get_byname, class time_put, class time_put_byname, | |
3086 | class money_base, struct __moneypunct_cache, class moneypunct, | |
3087 | class moneypunct_byname, class money_get, class money_put, | |
3088 | struct messages_base, class messages, class messages_byname): Move... | |
3089 | * include/bits/locale_facets_nonio.h: ... here. | |
3090 | * include/bits/locale_facets.tcc | |
3091 | (struct __use_cache<__moneypunct_cache<> >, | |
3092 | __moneypunct_cache<>::_M_cache, money_get<>::_M_extract, | |
3093 | money_get<>::__do_get, money_get<>::do_get, money_put<>::_M_insert, | |
3094 | money_put<>::__do_put, money_put<>::do_put, time_get<>::do_date_order, | |
3095 | time_get<>::_M_extract_via_format, time_get<>::_M_extract_num, | |
3096 | time_get<>::_M_extract_name, time_get<>::do_get_time, | |
3097 | time_get<>::do_get_date, time_get<>::do_get_weekday, | |
3098 | time_get<>::do_get_monthname, time_get<>::do_get_year, time_put<>::put, | |
3099 | time_put<>::do_put): Move... | |
3100 | * include/bits/locale_facets_nonio.tcc: ... here. | |
3101 | * include/Makefile.am: Add. | |
3102 | * include/std/locale: Adjust includes. | |
3103 | * include/std/fstream: Likewise. | |
3104 | * include/std/istream: Likewise. | |
3105 | * include/std/ostream: Likewise. | |
3106 | * include/Makefile.in: Regenerate. | |
3107 | ||
6c1e7e26 NS |
3108 | 2007-04-23 Nathan Sidwell <nathan@codesourcery.com> |
3109 | ||
3110 | * scripts/testsuite_flags.in: Add --build-cc option. | |
3111 | * testsuite/lib/libstdc++.exp (libstdc++_init): Set cc. Fix typo | |
3112 | in previous change. | |
3113 | (v3_target_compile_as_c): Use cc. | |
3114 | ||
6cd5b96f MM |
3115 | 2007-04-22 Mark Mitchell <mark@codesourcery.com> |
3116 | ||
3117 | * testsuite/lib/libstdc++.exp (libstdc++_init): Use the same flags | |
3118 | for remote host testing we use for local host testing. Copy all | |
3119 | testsuite headers to the remote host | |
3120 | (v3_target_compile_as_c): Use remote_exec, not just exec. | |
3121 | ||
4c9be806 PC |
3122 | 2007-04-22 Paolo Carlini <pcarlini@suse.de> |
3123 | ||
3124 | * include/tr1/functional: Formatting fixes. | |
3125 | ||
87a20856 PC |
3126 | 2007-04-22 Paolo Carlini <pcarlini@suse.de> |
3127 | ||
3128 | * include/ext/concurrence.h: Do not include <cstdlib>, use | |
3129 | __builtin_abort. | |
3130 | * include/debug/debug.h: Likewise. | |
3131 | * include/tr1/memory: Likewise. | |
3132 | * include/tr1/boost_shared_ptr.h: Likewise. | |
3133 | * include/tr1/functional: Likewise. | |
3134 | ||
3b476281 PC |
3135 | 2007-04-22 Paolo Carlini <pcarlini@suse.de> |
3136 | ||
3137 | * include/bits/locale_facets.tcc: Do not include <typeinfo>. | |
3138 | * testsuite/27_io/basic_ios/imbue/14072.cc: Do it here. | |
3139 | * testsuite/27_io/basic_ios/cons/char/3.cc: Likewise. | |
3140 | * testsuite/27_io/basic_istream/sentry/pod/1.cc: Likewise. | |
3141 | * testsuite/27_io/basic_ostream/sentry/pod/1.cc: Likewise. | |
3142 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
3143 | pod/10081-in.cc: Likewise. | |
3144 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
3145 | pod/10081-out.cc: Likewise. | |
3146 | * testsuite/22_locale/locale/cons/2.cc: Likewise. | |
3147 | * testsuite/22_locale/locale/cons/unicode.cc: Likewise. | |
3148 | * testsuite/22_locale/numpunct/members/pod/2.cc: Likewise. | |
3149 | * testsuite/22_locale/global_templates/1.cc: Likewise. | |
3150 | ||
f7cc5390 JM |
3151 | 2007-04-19 Joseph Myers <joseph@codesourcery.com> |
3152 | ||
3153 | * configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu* | |
3154 | for long double compatibility. | |
3155 | * configure: Regenerate. | |
3156 | * src/complex_io.cc, src/istream-inst.cc, src/ostream-inst.cc: | |
3157 | Condition some _GLIBCXX_LDBL_COMPAT calls on _GLIBCXX_USE_WCHAR_T. | |
3158 | ||
94872c09 SE |
3159 | 2007-04-14 Steve Ellcey <sje@cup.hp.com> |
3160 | ||
3161 | * configure.ac: Change how LIBSUPCXX_PICFLAGS is set. | |
3162 | * configure: Regenerate. | |
3163 | ||
587024cf PC |
3164 | 2007-04-14 Paolo Carlini <pcarlini@suse.de> |
3165 | ||
3166 | * config/locale/generic/c_locale.cc: Include <limits>. | |
3167 | ||
dded9d2c PC |
3168 | 2007-04-13 Paolo Carlini <pcarlini@suse.de> |
3169 | ||
3170 | PR libstdc++/31556 | |
3171 | * include/bits/stl_algobase.h (equal(_InputIterator1, _InputIterator1, | |
3172 | _InputIterator2, _BinaryPredicate), mismatch(_InputIterator1, | |
3173 | _InputIterator1, _InputIterator2, _BinaryPredicate)): Convert | |
3174 | predicate return to bool. | |
3175 | * include/bits/stl_algo.h (__find_if(_InputIterator, _InputIterator, | |
3176 | _Predicate, input_iterator_tag), search(_ForwardIterator1, | |
3177 | _ForwardIterator1, _ForwardIterator2, _ForwardIterator2, | |
3178 | _BinaryPredicate), __search_n(_ForwardIterator, _ForwardIterator, | |
3179 | _Integer, const _Tp&, _BinaryPredicate, std::forward_iterator_tag), | |
3180 | __search_n(_RandomAccessIter, _RandomAccessIter, _Integer, const _Tp&, | |
3181 | _BinaryPredicate, std::random_access_iterator_tag), | |
3182 | search_n(_ForwardIterator, _ForwardIterator, _Integer, const _Tp&, | |
3183 | _BinaryPredicate), remove_copy_if(_InputIterator, _InputIterator, | |
3184 | _OutputIterator, _Predicate), __unique_copy(_ForwardIterator, | |
3185 | _ForwardIterator, _OutputIterator, _BinaryPredicate, | |
3186 | forward_iterator_tag, output_iterator_tag), | |
3187 | __unique_copy(_InputIterator, _InputIterator, _OutputIterator, | |
3188 | _BinaryPredicate, input_iterator_tag, output_iterator_tag), | |
3189 | __unique_copy(_InputIterator, _InputIterator, _OutputIterator, | |
3190 | _BinaryPredicate, input_iterator_tag, output_iterator_tag), | |
3191 | __unique_copy(_InputIterator, _InputIterator, _ForwardIterator, | |
3192 | _BinaryPredicate, input_iterator_tag, forward_iterator_tag), | |
3193 | unique(_ForwardIterator, _ForwardIterator, _BinaryPredicate), | |
3194 | __partition(_BidirectionalIterator, _BidirectionalIterator, _Predicate, | |
3195 | bidirectional_iterator_tag), binary_search(_ForwardIterator, | |
3196 | _ForwardIterator, const _Tp&, _Compare), | |
3197 | next_permutation(_BidirectionalIterator, _BidirectionalIterator, | |
3198 | _Compare), prev_permutation(_BidirectionalIterator, | |
3199 | _BidirectionalIterator, _Compare)): Likewise. | |
3200 | ||
4ecacafc PC |
3201 | 2007-04-13 Paolo Carlini <pcarlini@suse.de> |
3202 | ||
3203 | PR libstdc++/31554 | |
3204 | * include/bits/stl_algo.h (stable_partition): Convert __buf.size() | |
3205 | to _DistanceType. | |
3206 | ||
6725add5 PC |
3207 | 2007-04-13 Paolo Carlini <pcarlini@suse.de> |
3208 | ||
3209 | * include/ext/numeric_traits.h: Do not include <limits>. | |
3210 | (__numeric_traits_integer::__is_signed, __digits): Add. | |
3211 | (__numeric_traits_floating::__digits10, __max_exponent10): Add. | |
3212 | * src/istream.cc (ignore<char>(streamsize, int_type), operator>> | |
3213 | (basic_istream<char>&, char*), ignore<wchar_t>(streamsize, | |
3214 | int_type)): Use the latter. | |
3215 | * src/compatibility.cc (ignore<char>(streamsize), | |
3216 | ignore<wchar_t>(streamsize)): Likewise. | |
3217 | * include/ext/vstring_util.h (__vstring_utility<>::_S_compare): | |
3218 | Likewise. | |
3219 | * include/bits/stl_memory.h (__get_temporary_buffer): Likewise. | |
3220 | * include/bits/stl_algobase.h (lexicographical_compare(const char*, | |
3221 | const char*, const char*, const char*)): Likewise. | |
3222 | * include/bits/locale_facets.tcc (num_get<>::_M_extract_int(_InIter, | |
3223 | _InIter, ios_base&, ios_base::iostate&, _ValueT&), | |
3224 | num_put<>::_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT), | |
3225 | num_put<>::_M_insert_float(_OutIter, ios_base&, _CharT, char, | |
3226 | _ValueT), collate<>::do_hash(const _CharT*, const _CharT*)): Likewise. | |
3227 | * include/bits/basic_string.h (basic_string<>::_S_compare): Likewise. | |
3228 | * include/bits/istream.tcc (operator>>(short&), operator>>(int&), | |
3229 | ignore(streamsize), ignore(streamsize, int_type), operator>> | |
3230 | (basic_istream<>&, _CharT*)): Likewise. | |
3231 | * include/bits/stl_bvector.h (vector<bool>::max_size): Likewise. | |
3232 | * include/tr1/functional_hash.h (struct hash<long double>): Likewise. | |
3233 | * include/std/istream: Do not include <limits>. | |
3234 | * include/tr1/cmath: Include <limits>. | |
3235 | * testsuite/23_containers/vector/bool/capacity/29134.cc: Likewise. | |
3236 | * testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc: | |
3237 | Likewise. | |
3238 | * testsuite/27_io/basic_istream/extractors_arithmetic/char/13.cc: | |
3239 | Likewise. | |
3240 | * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/12.cc: | |
3241 | Likewise. | |
3242 | * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/13.cc: | |
3243 | Likewise. | |
3244 | * testsuite/27_io/ios_base/storage/2.cc: Likewise. | |
3245 | ||
3246 | * include/tr1/hashtable: Do not include the whole <iterator>. | |
3247 | ||
fdc2084a PC |
3248 | 2007-04-11 Paolo Carlini <pcarlini@suse.de> |
3249 | ||
3250 | * config/locale/gnu/c_locale.h: Do not include <langinfo.h> | |
3251 | and <iconv.h>. | |
3252 | * config/locale/gnu/c++locale_internal.h: Include <langinfo.h>. | |
3253 | ||
574e75f5 PC |
3254 | 2007-04-11 Paolo Carlini <pcarlini@suse.de> |
3255 | ||
3256 | * include/std/istream (class basic_istream<>): Remove unneded friend | |
3257 | declarations. | |
3258 | ||
54e2e812 PC |
3259 | 2007-04-11 Paolo Carlini <pcarlini@suse.de> |
3260 | ||
3261 | * testsuite/22_locale/num_get/get/wchar_t/1.cc: Initialize v. | |
3262 | ||
90737ab7 PC |
3263 | 2007-04-11 Paolo Carlini <pcarlini@suse.de> |
3264 | ||
3265 | * include/bits/locale_facets.tcc (num_get<>::do_get(iter_type, | |
3266 | ios_base&, ios_base::iostate&, void*&)): Fix for sizeof(void*) | |
3267 | > sizeof(unsigned long). | |
3268 | ||
3269 | * testsuite/22_locale/num_get/get/char/1.cc: Fix void* test. | |
3270 | * testsuite/22_locale/num_get/get/wchar_t/1.cc: Likewise. | |
3271 | ||
3272 | * testsuite/22_locale/num_put/put/char/1.cc: Tweak comment. | |
3273 | * testsuite/22_locale/num_put/put/wchar_t/1.cc: Likewise. | |
3274 | ||
fdc2084a | 3275 | 2007-04-11 Zack Weinberg <zackw@panix.com> |
c74620b0 ZW |
3276 | |
3277 | * include/std/iosfwd: Do not include <bits/c++locale.h> and | |
3278 | <bits/functexcept.h>. | |
3279 | ||
113008b5 BK |
3280 | 2007-04-10 Benjamin Kosnik <bkoz@redhat.com> |
3281 | ||
3282 | * include/ext/pb_ds/detail/resize_policy/ | |
3283 | cc_hash_max_collision_check_resize_trigger_imp.hpp: Qualify | |
3284 | namespace std members. | |
3285 | * include/ext/pb_ds/detail/list_update_policy/ | |
3286 | counter_lu_metadata.hpp: Same. | |
3287 | * include/ext/throw_allocator.h: Same. | |
3288 | * include/ext/pod_char_traits.h: Same. | |
3289 | * include/ext/malloc_allocator.h: Same. | |
3290 | * libsupc++/del_op.cc: Same, simplify. | |
3291 | ||
3292 | * include/bits/c++config: Adjust macro name. | |
3293 | ||
3294 | * include/c_global/cstring: Alphabetize. | |
3295 | * include/c_global/cwctype: Same. | |
3296 | ||
d81db5b0 PC |
3297 | 2007-04-10 Paolo Carlini <pcarlini@suse.de> |
3298 | ||
3299 | * include/tr1/cmath: Include <bits/stl_algobase.h> instead of | |
3300 | the whole <algorithm>. | |
3301 | ||
05beb8e7 PC |
3302 | 2007-04-10 Paolo Carlini <pcarlini@suse.de> |
3303 | ||
3304 | * include/tr1/type_traits (__is_function_helper): New, uses | |
3305 | variadic templates. | |
3306 | (is_function): Forward to the latter. | |
3307 | * testsuite/tr1/4_metaprogramming/primary_type_categories/ | |
3308 | is_function/is_function.cc: Add test. | |
3309 | ||
11202768 PC |
3310 | 2007-04-10 Paolo Carlini <pcarlini@suse.de> |
3311 | ||
3312 | PR libstdc++/28277 (partial: vstring bits) | |
3313 | * include/bits/ostream_insert.h: New. | |
3314 | * include/Makefile.am: Add. | |
3315 | * include/ext/vstring.h (operator<<(basic_ostream<>&, | |
3316 | const __versa_string<>&): Forward to __ostream_insert. | |
3317 | * include/bits/basic_string.h (operator<<(basic_ostream<>&, | |
3318 | const string<>&)): Likewise. | |
3319 | * include/std/ostream (operator<<(basic_ostream<>&, _CharT), | |
3320 | operator<<(basic_ostream<char,>&, char), operator<<(basic_ostream<>&, | |
3321 | const _CharT*), operator<<(basic_ostream<char,>&, const char*)): | |
3322 | Likewise. | |
3323 | * include/ext/vstring.tcc (operator<<(basic_ostream<>&, | |
3324 | const __versa_string<>&)): Remove. | |
3325 | (class basic_ostream): Remove friend declarations. | |
3326 | (basic_ostream<>::_M_write(char_type, streamsize), | |
3327 | _M_insert(const char_type*, streamsize)): Remove. | |
3328 | * include/bits/ostream.tcc (_M_insert(const char_type*, streamsize)): | |
3329 | Remove definition. | |
3330 | (operator<<(basic_ostream<>&, const char*)): Use __ostream_insert. | |
3331 | * config/abi/pre/gnu.ver: Adjust. | |
3332 | * src/ostream-inst.cc: Add __ostream_insert instantiations. | |
3333 | * include/bits/locale_facets.h (__pad<>::_S_pad): Remove __num | |
3334 | parameter. | |
3335 | * include/bits/locale_facets.tcc (__pad<>::_S_pad): Adjust. | |
3336 | (num_put<>::_M_pad(_CharT, streamsize, ios_base&, _CharT*, | |
3337 | const _CharT*, int&)): Likewise. | |
3338 | * include/Makefile.in: Rebuild. | |
3339 | * testsuite/ext/vstring/inserters_extractors/char/28277.cc: New. | |
3340 | * testsuite/ext/vstring/inserters_extractors/wchar_t/28277.cc: New. | |
3341 | ||
3342 | * include/ext/vstring_util.h: Do not include the whole <locale>. | |
3343 | * include/ext/vstring.tcc (operator>>(basic_istream<>&, | |
3344 | __versa_string<>&, getline(basic_istream<>&, __versa_string<>&, | |
3345 | _CharT)): Tweak to refer to ios_base as a base of istream; do not | |
3346 | refer to non-standard types of istream. | |
3347 | * include/bits/istream.tcc (operator>>(basic_istream<>&, _CharT*), | |
3348 | ws(basic_istream<>&)): Do not refer to non-standard types of istream. | |
3349 | * include/std/bitset (operator>>(std::basic_istream<>&, bitset<>&)): | |
3350 | Avoid using basic_streambuf<>*. | |
3351 | ||
3352 | * include/bits/istream.tcc (operator>>(basic_istream<>&, | |
3353 | basic_string<>&), getline(basic_istream<>&, basic_string<>&, _CharT)): | |
3354 | Move... | |
3355 | * include/bits/basic_string.tcc: ... here; tweak to refer to ios_base | |
3356 | as a base of istream; do not refer to non-standard types of istream. | |
3357 | * include/std/string: Tweak includes. | |
3358 | ||
3359 | * include/ext/type_traits.h (__is_null_pointer): Add. | |
3360 | * include/ext/rc_string_base.h: Use it. | |
3361 | * include/ext/sso_string_base.h: Likewise. | |
3362 | * include/bits/basic_string.tcc (__is_null_pointer): Remove, use | |
3363 | the above. | |
3364 | * include/ext/vstring_util.h (__vstring_utility<>::_S_is_null_pointer): | |
3365 | Remove. | |
3366 | ||
22931aa4 PC |
3367 | 2007-04-09 Paolo Carlini <pcarlini@suse.de> |
3368 | ||
3369 | * include/tr1/type_traits_fwd.h (__is_union_or_class): Remove. | |
3370 | * include/tr1/type_traits (struct __in_array, | |
3371 | struct __is_union_or_class, struct __is_union_or_class_helper, | |
3372 | struct __is_empty_helper, struct __is_polymorphic_helper): | |
3373 | Remove. | |
3374 | (struct is_enum): Use __is_enum. | |
3375 | (struct is_union): Use __is_union. | |
3376 | (struct is_class): Use __is_class. | |
3377 | (struct is_function): Adjust. | |
3378 | (struct is_empty): Use __is_empty. | |
3379 | (struct is_polymorphic): Use __is_polymorphic. | |
3380 | (struct is_abstract): Use __is_abstract. | |
3381 | (struct has_virtual_destructor): Use __has_virtual_destructor. | |
3382 | (struct __is_base_of_helper): Use __is_base_of. | |
3383 | * testsuite/tr1/4_metaprogramming/composite_type_traits/ | |
3384 | is_union_or_class/typedefs.cc: Remove. | |
3385 | * testsuite/tr1/4_metaprogramming/composite_type_traits/ | |
3386 | is_union_or_class/is_union_or_class.cc: Likewise. | |
3387 | * testsuite/tr1/4_metaprogramming/primary_type_categories/ | |
3388 | is_class/typedefs.cc: New. | |
3389 | * testsuite/tr1/4_metaprogramming/primary_type_categories/ | |
3390 | is_class/is_class.cc: Likewise. | |
3391 | * testsuite/tr1/4_metaprogramming/primary_type_categories/ | |
3392 | is_union/typedefs.cc: Likewise. | |
3393 | * testsuite/tr1/4_metaprogramming/primary_type_categories/ | |
3394 | is_union/is_union.cc: Likewise. | |
3395 | * testsuite/tr1/4_metaprogramming/type_properties/ | |
3396 | has_virtual_destructor/typedefs.cc: Likewise. | |
3397 | * testsuite/tr1/4_metaprogramming/type_properties/ | |
3398 | has_virtual_destructor/has_virtual_destructor.cc: Likewise. | |
3399 | * testsuite/util/testsuite_tr1.h (class VirtualDestructorClass): Add. | |
3400 | * testsuite/tr1/4_metaprogramming/type_properties/is_polymorphic/ | |
3401 | is_polymorphic.cc: Add test. | |
3402 | ||
ad1a64ba AB |
3403 | 2007-04-08 Alexey Beshenov <bav.272304@gmail.com> |
3404 | ||
3405 | PR libstdc++/31511 | |
3406 | * include/c_global/cmath.tcc (__cmath_power): Use _Tp(1). | |
3407 | * include/c_std/cmath.tcc (__cmath_power): Likewise. | |
3408 | ||
1bfe2e5f PC |
3409 | 2007-04-06 Paolo Carlini <pcarlini@suse.de> |
3410 | ||
3411 | PR libstdc++/31117 | |
3412 | * config/locale/gnu/c_locale.cc (__convert_to_v): Do not use errno, | |
3413 | just check that the value is finite. | |
3414 | * config/locale/generic/c_locale.cc (__convert_to_v): Likewise. | |
3415 | ||
b3726dab PC |
3416 | 2007-04-06 Paolo Carlini <pcarlini@suse.de> |
3417 | ||
3418 | * include/ext/type_traits.h (__numeric_traits): Move... | |
3419 | * include/ext/numeric_traits.h: ... here. | |
3420 | * include/Makefile.am: Add. | |
3421 | * include/ext/pb_ds/detail/type_utils.hpp: Include | |
3422 | <ext/numeric_traits.h> too. | |
3423 | * include/tr1/random: Likewise. | |
3424 | * testsuite/ext/type_traits/numeric_traits.cc: Move... | |
3425 | * testsuite/ext/numeric_traits/numeric_traits.cc: ... here. | |
3426 | * include/Makefile.in: Regenerate. | |
3427 | ||
34989df3 PC |
3428 | 2007-04-04 Paolo Carlini <pcarlini@suse.de> |
3429 | ||
3430 | * include/bits/valarray_array.h (__valarray_default_construct(_Tp*, | |
3431 | _Tp*)): Use __is_scalar instead of __is_pod. | |
3432 | ||
ff2ea587 PC |
3433 | 2007-04-03 Paolo Carlini <pcarlini@suse.de> |
3434 | ||
3435 | * include/bits/stl_algobase.h (__copy_aux(_II, _II, _OI), | |
3436 | __copy_backward_aux(_BI1, _BI1, _BI2)): Use __is_pod. | |
3437 | * include/bits/stl_deque.h (deque<>::_M_destroy_data(iterator, | |
3438 | iterator, const std::allocator<>&)): Use __has_trivial_constructor. | |
3439 | (deque<>::_M_destroy_data_dispatch): Remove. | |
3440 | * include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator, | |
3441 | _InputIterator, _ForwardIterator), uninitialized_fill(_ForwardIterator, | |
3442 | _ForwardIterator, const _Tp&), uninitialized_fill_n(_ForwardIterator, | |
3443 | _Size, const _Tp&)): Use __is_pod. | |
3444 | * include/bits/stl_tempbuf.h (_Temporary_buffer:: | |
3445 | _Temporary_buffer(_ForwardIterator, _ForwardIterator)): Use __is_pod. | |
3446 | (_Temporary_buffer::_M_initialize_buffer): Remove. | |
3447 | * include/bits/stl_construct.h (_Destroy(_ForwardIterator, | |
3448 | _ForwardIterator)): Use __has_trivial_destructor. | |
3449 | (__destroy_aux): Remove. | |
3450 | ||
eb9af792 PC |
3451 | 2007-04-03 Paolo Carlini <pcarlini@suse.de> |
3452 | ||
3453 | * include/bits/stl_map.h (map<>::insert(iterator, const value_type&): | |
3454 | Uglify parameter. | |
3455 | ||
f7e52577 PC |
3456 | 2007-04-03 Paolo Carlini <pcarlini@suse.de> |
3457 | ||
3458 | PR libstdc++/31440 | |
3459 | * include/bits/stl_tree.h (_M_lower_bound(_Link_type, _Link_type, | |
3460 | const _Key&), _M_upper_bound(_Link_type, _Link_type, const _Key&)): | |
3461 | Add. | |
3462 | (_M_equal_range(const _Key&) const): Remove. | |
3463 | (lower_bound(const key_type&), lower_bound(const key_type&) const, | |
3464 | upper_bound(const key_type&), upper_bound(const key_type&) const, | |
3465 | equal_range(const key_type&), equal_range(const key_type&) const): | |
3466 | Adjust. | |
3467 | (find(const _Key&), find(const _Key&) const): Tweak. | |
3468 | * testsuite/23_containers/map/operations/31440.cc: New. | |
3469 | ||
be1088fa ML |
3470 | 2007-04-02 Matthew Levine <gcc@severeweblint.org> |
3471 | Paolo Carlini <pcarlini@suse.de> | |
3472 | ||
3473 | PR libstdc++/31370 | |
3474 | * include/bits/stl_bvector.h (vector<bool>::max_size): Fix. | |
3475 | (vector<bool>::_M_check_len): Add. | |
3476 | * include/bits/vector.tcc (_M_fill_insert(iterator, size_type, bool), | |
3477 | _M_insert_range(iterator, _ForwardIterator, _ForwardIterator, | |
3478 | std::forward_iterator_tag), _M_insert_aux(iterator, bool)): Use it. | |
3479 | * testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: New. | |
3480 | * testsuite/23_containers/vector/bool/capacity/29134.cc: Adjust. | |
3481 | ||
3482 | * include/bits/stl_vector.h (vector<>::_M_check_len): Add. | |
3483 | * include/bits/vector.tcc (_M_insert_aux(iterator, const _Tp&), | |
3484 | _M_fill_insert(iterator, size_type, const value_type&), | |
3485 | _M_range_insert(iterator, _ForwardIterator, _ForwardIterator, | |
3486 | std::forward_iterator_tag)): Use it. | |
3487 | ||
3d919c62 PC |
3488 | 2007-04-02 Paolo Carlini <pcarlini@suse.de> |
3489 | ||
3490 | PR libstdc++/31401 (vstring bits) | |
3491 | * include/ext/vstring.tcc (find(const _CharT*, size_type, | |
3492 | size_type)): Avoid unsigned overflow. | |
3493 | ||
5b3f6d1a PC |
3494 | 2007-04-02 Paolo Carlini <pcarlini@suse.de> |
3495 | ||
3496 | * include/bits/locale_facets.tcc (num_put<>::do_put(iter_type, | |
3497 | ios_base&, char_type, const void*)): Fix for sizeof(const void*) | |
3498 | > sizeof(unsigned long). | |
3499 | ||
df848e82 AT |
3500 | 2007-04-01 Andreas Tobler <a.tobler@schweiz.org> |
3501 | ||
3502 | * include/tr1/poly_laguerre.tcc: Missing s/__alpha/__alpha1, line 278. | |
3503 | ||
f070285a RH |
3504 | 2007-04-01 Richard Henderson <rth@redhat.com> |
3505 | ||
3506 | * include/tr1/poly_laguerre.tcc: s/__alpha/__alpha1/g. | |
3507 | * include/tr1/ell_integral.tcc: Likewise. | |
3508 | ||
232c4925 PC |
3509 | 2007-03-31 Paolo Carlini <pcarlini@suse.de> |
3510 | ||
3511 | * include/bits/stl_bvector.h (_M_fill_insert(iterator, size_type, | |
3512 | bool), _M_insert_range(iterator, _ForwardIterator, _ForwardIterator, | |
3513 | std::forward_iterator_tag), _M_insert_aux(iterator, bool)): Move | |
3514 | out of line... | |
3515 | * include/bits/vector.tcc: ... here. | |
3516 | ||
cb68ec50 PC |
3517 | 2007-03-30 Paolo Carlini <pcarlini@suse.de> |
3518 | ||
3519 | PR c++/26099 | |
3520 | * include/bits/cpp_type_traits.h (struct __is_pod, struct __is_empty): | |
3521 | Remove. | |
3522 | * include/bits/valarray_array.h: Adjust. | |
3523 | * include/bits/allocator.h: Likewise. | |
3524 | * include/bits/stl_tree.h: Likewise. | |
3525 | ||
1c917b03 PC |
3526 | 2007-03-30 Paolo Carlini <pcarlini@suse.de> |
3527 | ||
3528 | PR libstdc++/31401 | |
3529 | * include/bits/basic_string.tcc (find(const _CharT*, size_type, | |
3530 | size_type)): Avoid unsigned overflow. | |
3531 | * testsuite/21_strings/basic_string/find/char/4.cc: New. | |
3532 | * testsuite/21_strings/basic_string/find/wchar_t/4.cc: Likewise. | |
3533 | ||
7558d810 PC |
3534 | 2007-03-27 Paolo Carlini <pcarlini@suse.de> |
3535 | ||
3536 | * include/bits/fstream.tcc (basic_filebuf<>::underflow): | |
3537 | Don't call codecvt::in at all if _M_ext_next >= _M_ext_end. | |
3538 | * testsuite/27_io/basic_filebuf/underflow/char/3.cc: New. | |
3539 | ||
5ad2f32d BK |
3540 | 2007-03-26 Benjamin Kosnik <bkoz@redhat.com> |
3541 | ||
3542 | * include/c_compatibility/complex.h: Without | |
3543 | __GXX_EXPERIMENTAL_CXX0X__ include_next complex.h. | |
3544 | * include/c_compatibility/fenv.h: Same. | |
3545 | * include/c_compatibility/inttypes.h: Same. | |
3546 | * include/c_compatibility/stdbool.h: Same. | |
3547 | * include/c_compatibility/stdint.h: Same. | |
3548 | * include/c_compatibility/tgmath.h: Same. | |
3549 | ||
3550 | * include/tr1/cinttypes: Use include_next. | |
3551 | * include/tr1/cstdint: Same. | |
3552 | * include/tr1/cstdbool: Same. | |
3553 | ||
3554 | * acinclude.m4 (GLIBCXX_ENABLE_C99): Add check for tgmath.h | |
3555 | * configure: Regenerate. | |
3556 | * config.h.in: Same. | |
3557 | ||
cdbd119b PC |
3558 | 2007-03-25 Paolo Carlini <pcarlini@suse.de> |
3559 | ||
3560 | * include/tr1/functional: Formatting fixes. | |
3561 | ||
1f93ef92 PC |
3562 | 2007-03-23 Paolo Carlini <pcarlini@suse.de> |
3563 | ||
3564 | * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/4402.cc: | |
3565 | Likewise use std::numeric_limits<>::max(). | |
3566 | * testsuite/27_io/basic_ostream/inserters_arithmetic/char/4402.cc: | |
3567 | Minor tweaks. | |
3568 | ||
4f2f9797 HPN |
3569 | 2007-03-23 Hans-Peter Nilsson <hp@axis.com> |
3570 | ||
3571 | * testsuite/27_io/basic_ostream/inserters_arithmetic/char/4402.cc | |
3572 | (test02): Use std::numeric_limits<>::max() to get suitable large | |
3573 | values. | |
3574 | ||
803f183a BK |
3575 | 2007-03-22 Benjamin Kosnik <bkoz@redhat.com> |
3576 | ||
3577 | * testsuite/21_strings/headers/cstdlib/functions_std.cc: Without | |
3578 | C99 support, _GLIBCXX_USE_WCHAR_T not defined, so | |
3579 | dg-require-c-std. | |
3580 | * testsuite/tr1/6_containers/headers/functional/synopsis.cc: Same. | |
3581 | * testsuite/27_io/headers/iostream/synopsis.cc: Same. | |
3582 | * testsuite/27_io/headers/streambuf/types_std.cc: Same. | |
3583 | * testsuite/27_io/headers/sstream/types_std.cc: Same. | |
3584 | * testsuite/27_io/headers/ostream/types_std.cc: Same. | |
3585 | * testsuite/27_io/headers/istream/types_std.cc: Same. | |
3586 | * testsuite/27_io/headers/iostream/types_std.cc: Same. | |
3587 | * testsuite/27_io/headers/fstream/types_std.cc: Same. | |
3588 | * testsuite/21_strings/headers/string/types_std.cc: Same. | |
3589 | * testsuite/21_strings/headers/cwctype/functions_std.cc: Same. | |
3590 | * testsuite/21_strings/headers/cwctype/types_std.cc: Same. | |
3591 | * testsuite/21_strings/headers/cwchar/functions_std.cc: Same. | |
3592 | * testsuite/21_strings/headers/cwchar/types_std.cc: Same. | |
3593 | ||
3594 | * include/Makefile.am (c_compatibility_headers): Add fenv.h. | |
3595 | * include/Makefile.in: Regenerate. | |
3596 | * configure.host: Update comment. | |
3597 | ||
3598 | * include/tr1/cfenv: Use include_next. | |
3599 | ||
b5e5ca5f PC |
3600 | 2007-03-19 Paolo Carlini <pcarlini@suse.de> |
3601 | ||
3602 | * include/tr1/tuple (get(_Tuple_impl<>&, get(const _Tuple_impl<>&): | |
3603 | Rename as __get_helper. | |
3604 | (get(tuple<>&, get(const tuple<>&)): Forward to the latter. | |
3605 | ||
1f08feb4 BK |
3606 | 2007-03-19 Benjamin Kosnik <bkoz@redhat.com> |
3607 | ||
3608 | * docs/doxygen/user.cfg.in: Update for new includes, macros. | |
3609 | ||
bd994a48 MM |
3610 | 2007-03-18 Mark Mitchell <mark@codesourcery.com> |
3611 | ||
3612 | * libsupc++/array_type_info.cc: Likewise. | |
3613 | * libsupc++/bad_cast.cc: Likewise. | |
3614 | * libsupc++/bad_typeid.cc: Likewise. | |
3615 | * libsupc++/class_type_info.cc: Likewise. | |
3616 | * libsupc++/dyncast.cc: Likewise. | |
3617 | * libsupc++/enum_type_info.cc: Likewise. | |
3618 | * libsupc++/function_type_info.cc: Likewise. | |
3619 | * libsupc++/fundamental_type_info.cc: Likewise. | |
3620 | * libsupc++/pbase_type_info.cc: Likewise. | |
3621 | * libsupc++/pmem_type_info.cc: Likewise. | |
3622 | * libsupc++/pointer_type_info.cc: Likewise. | |
3623 | * libsupc++/si_class_type_info.cc: Likewise. | |
3624 | * libsupc++/vmi_class_type_info.cc: Likewise. | |
3625 | * libsupc++/tinfo.h: Move inline type_info functions here. | |
3626 | * libsupc++/tinfo.cc: Separate type_info classes into their own | |
3627 | files. | |
3628 | * libsupc++/tinfo2.cc: Likewise. | |
3629 | * Makefile.am (sources): Mention new files. | |
3630 | * Makefile.in: Regenerated. | |
3631 | ||
3422222a BK |
3632 | 2007-03-16 Benjamin Kosnik <bkoz@redhat.com> |
3633 | ||
3634 | * testsuite/27_io/headers/cinttypes/types_std_c++0x.cc: Use | |
3635 | -std=gnu++0x instead of -std=c++0x for testing. | |
3636 | * testsuite/18_support/headers/cstdint/types_std_c++0x.cc: Same. | |
3637 | * testsuite/26_numerics/headers/random/types_std_c++0x.cc: Same. | |
3638 | * testsuite/26_numerics/headers/cfenv/types_std_c++0x.cc: Same. | |
3639 | * testsuite/26_numerics/headers/cstdlib/types_std_c++0x.cc: Same. | |
3640 | * testsuite/26_numerics/headers/cmath/types_std_c++0x.cc: Same. | |
3641 | * testsuite/17_intro/headers/c++200x/all_multiple_inclusion.cc: Same. | |
3642 | * testsuite/17_intro/headers/c++200x/all.cc: Same. | |
3643 | * testsuite/17_intro/using_namespace_std_tr1_neg.cc: Same. | |
3644 | * testsuite/23_containers/hash/requirements/ | |
3645 | explicit_instantiation.cc: Same. | |
3646 | * testsuite/23_containers/unordered_map/requirements/ | |
3647 | explicit_instantiation.cc: Same. | |
3648 | * testsuite/23_containers/tuple/requirements/ | |
3649 | explicit_instantiation.cc: Same. | |
3650 | * testsuite/23_containers/unordered_multimap/requirements/ | |
3651 | explicit_instantiation.cc: Same. | |
3652 | * testsuite/23_containers/unordered_set/requirements/ | |
3653 | explicit_instantiation.cc: Same. | |
3654 | * testsuite/23_containers/headers/tuple/types_std_c++0x.cc: Same. | |
3655 | * testsuite/23_containers/unordered_multiset/requirements/ | |
3656 | explicit_instantiation.cc: Same. | |
3657 | * testsuite/23_containers/array/requirements/ | |
3658 | explicit_instantiation.cc: Same. | |
3659 | * testsuite/20_util/enable_shared_from_this/requirements/ | |
3660 | explicit_instantiation.cc: Same. | |
3661 | * testsuite/20_util/headers/functional/types_std_c++0x.cc: Same. | |
3662 | * testsuite/20_util/headers/functional/ | |
3663 | using_namespace_std_placeholders.cc: Same. | |
3664 | * testsuite/20_util/headers/type_traits/types_std_c++0x.cc: Same. | |
3665 | * testsuite/20_util/headers/memory/types_std_c++0x.cc: Same. | |
3666 | * testsuite/20_util/shared_ptr/requirements/ | |
3667 | explicit_instantiation.cc: Same. | |
3668 | * testsuite/20_util/weak_ptr/requirements/ | |
3669 | explicit_instantiation.cc: Same. | |
3670 | ||
7c62b943 BK |
3671 | 2007-03-16 Benjamin Kosnik <bkoz@redhat.com> |
3672 | ||
3673 | * testsuite/lib/dg-options.exp (dg-require-c-std): New. | |
3674 | * testsuite/lib/libstdc++.exp (check_v3_target_c_std): New. Check to | |
3675 | see if _GLIBCXX_USE_C99_MATH is active. | |
3676 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3677 | 08_cyl_bessel_i/check_nan.cc: Use dg-require-c-std. | |
3678 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3679 | 17_hyperg/check_nan.cc: Same. | |
3680 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3681 | 13_ellint_2/check_nan.cc: Same. | |
3682 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3683 | 20_riemann_zeta/check_nan.cc: Same. | |
3684 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3685 | 01_assoc_laguerre/check_nan.cc: Same. | |
3686 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3687 | 02_assoc_legendre/check_nan.cc: Same. | |
3688 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3689 | 22_sph_legendre/check_nan.cc: Same. | |
3690 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3691 | 10_cyl_bessel_k/check_nan.cc: Same. | |
3692 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3693 | 09_cyl_bessel_j/check_nan.cc: Same. | |
3694 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3695 | 21_sph_bessel/check_nan.cc: Same. | |
3696 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3697 | 07_conf_hyperg/check_nan.cc: Same. | |
3698 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3699 | 16_hermite/check_nan.cc: Same. | |
3700 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3701 | 12_ellint_1/check_nan.cc: Same. | |
3702 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3703 | 05_comp_ellint_2/check_nan.cc: Same. | |
3704 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3705 | 18_laguerre/check_nan.cc: Same. | |
3706 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3707 | 14_ellint_3/check_nan.cc: Same. | |
3708 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3709 | 04_comp_ellint_1/check_nan.cc: Same. | |
3710 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3711 | 06_comp_ellint_3/check_nan.cc: Same. | |
3712 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3713 | 19_legendre/check_nan.cc: Same. | |
3714 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3715 | 03_beta/check_nan.cc: Same. | |
3716 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3717 | 11_cyl_neumann/check_nan.cc: Same. | |
3718 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3719 | 15_expint/check_nan.cc: Same. | |
3720 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3721 | 23_sph_neumann/check_nan.cc: Same. | |
3722 | ||
3723 | * include/tr1/poly_laguerre.tcc (__poly_laguerre): Don't check if | |
3724 | unsigned int can be a NaN. | |
3725 | ||
3726 | 2007-03-16 Edward M. Smith-Rowland <3dw4rd@verizon.net> | |
3727 | ||
3728 | * docs/html/ext/tr1.html : Marked tr1 math special functions done. | |
3729 | * docs/html/faq/index.html : Ditto. | |
3730 | * include/Makefile.in : Added new special function header files. | |
3731 | * include/Makefile.am : Ditto. | |
3732 | * include/tr1/common.h : Added type promotion routines for three | |
3733 | and four args. | |
3734 | ||
3735 | * include/tr1/special_function_util.h: New. | |
3736 | * include/tr1/bessel_function.tcc: New. | |
3737 | * include/tr1/beta_function.tcc: New. | |
3738 | * include/tr1/ell_integral.tcc: New. | |
3739 | * include/tr1/exp_integral.tcc: New. | |
3740 | * include/tr1/gamma.tcc: New. | |
3741 | * include/tr1/hypergeometric.tcc: New. | |
3742 | * include/tr1/legendre_function.tcc: New. | |
3743 | * include/tr1/modified_bessel_func.tcc: New. | |
3744 | * include/tr1/poly_hermite.tcc: New. | |
3745 | * include/tr1/poly_laguerre.tcc: New. | |
3746 | * include/tr1/riemann_zeta.tcc: New. | |
3747 | * include/tr1/cmath : Included tr1 math special functions. | |
3748 | * include/tr1/math.h : Ditto. | |
3749 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3750 | testcase.h: New. | |
3751 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3752 | 01_assoc_laguerre/compile.cc: New. | |
3753 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3754 | 01_assoc_laguerre/check_nan.cc: New. | |
3755 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3756 | 01_assoc_laguerre/check_value.cc: New. | |
3757 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3758 | 01_assoc_laguerre/compile_2.cc: New. | |
3759 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3760 | 02_assoc_legendre/compile.cc: New. | |
3761 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3762 | 02_assoc_legendre/check_nan.cc: New. | |
3763 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3764 | 02_assoc_legendre/check_value.cc: New. | |
3765 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3766 | 02_assoc_legendre/compile_2.cc: New. | |
3767 | * testsuite/tr1/5_numerical_facilities/special_functions/03_beta/ | |
3768 | compile.cc: New. | |
3769 | * testsuite/tr1/5_numerical_facilities/special_functions/03_beta/ | |
3770 | check_nan.cc: New. | |
3771 | * testsuite/tr1/5_numerical_facilities/special_functions/03_beta/ | |
3772 | check_value.cc: New. | |
3773 | * testsuite/tr1/5_numerical_facilities/special_functions/03_beta/ | |
3774 | compile_2.cc: New. | |
3775 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3776 | 04_comp_ellint_1/compile.cc: New. | |
3777 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3778 | 04_comp_ellint_1/check_nan.cc: New. | |
3779 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3780 | 04_comp_ellint_1/check_value.cc: New. | |
3781 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3782 | 04_comp_ellint_1/compile_2.cc: New. | |
3783 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3784 | 05_comp_ellint_2/compile.cc: New. | |
3785 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3786 | 05_comp_ellint_2/check_nan.cc: New. | |
3787 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3788 | 05_comp_ellint_2/check_value.cc: New. | |
3789 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3790 | 05_comp_ellint_2/compile_2.cc: New. | |
3791 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3792 | 06_comp_ellint_3/compile.cc: New. | |
3793 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3794 | 06_comp_ellint_3/check_nan.cc: New. | |
3795 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3796 | 06_comp_ellint_3/check_value.cc: New. | |
3797 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3798 | 06_comp_ellint_3/compile_2.cc: New. | |
3799 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3800 | 07_conf_hyperg/compile.cc: New. | |
3801 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3802 | 07_conf_hyperg/check_nan.cc: New. | |
3803 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3804 | 07_conf_hyperg/check_value.cc: New. | |
3805 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3806 | 07_conf_hyperg/compile_2.cc: New. | |
3807 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3808 | 08_cyl_bessel_i/compile.cc: New. | |
3809 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3810 | 08_cyl_bessel_i/check_nan.cc: New. | |
3811 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3812 | 08_cyl_bessel_i/check_value.cc: New. | |
3813 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3814 | 08_cyl_bessel_i/compile_2.cc: New. | |
3815 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3816 | 09_cyl_bessel_j/compile.cc: New. | |
3817 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3818 | 09_cyl_bessel_j/check_nan.cc: New. | |
3819 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3820 | 09_cyl_bessel_j/check_value.cc: New. | |
3821 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3822 | 09_cyl_bessel_j/compile_2.cc: New. | |
3823 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3824 | 10_cyl_bessel_k/compile.cc: New. | |
3825 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3826 | 10_cyl_bessel_k/check_nan.cc: New. | |
3827 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3828 | 10_cyl_bessel_k/check_value.cc: New. | |
3829 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3830 | 10_cyl_bessel_k/compile_2.cc: New. | |
3831 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3832 | 11_cyl_neumann/compile.cc: New. | |
3833 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3834 | 11_cyl_neumann/check_nan.cc: New. | |
3835 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3836 | 11_cyl_neumann/check_value.cc: New. | |
3837 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3838 | 11_cyl_neumann/compile_2.cc: New. | |
3839 | * testsuite/tr1/5_numerical_facilities/special_functions/12_ellint_1/ | |
3840 | compile.cc: New. | |
3841 | * testsuite/tr1/5_numerical_facilities/special_functions/12_ellint_1/ | |
3842 | check_nan.cc: New. | |
3843 | * testsuite/tr1/5_numerical_facilities/special_functions/12_ellint_1/ | |
3844 | check_value.cc: New. | |
3845 | * testsuite/tr1/5_numerical_facilities/special_functions/12_ellint_1/ | |
3846 | compile_2.cc: New. | |
3847 | * testsuite/tr1/5_numerical_facilities/special_functions/13_ellint_2/ | |
3848 | compile.cc: New. | |
3849 | * testsuite/tr1/5_numerical_facilities/special_functions/13_ellint_2/ | |
3850 | check_nan.cc: New. | |
3851 | * testsuite/tr1/5_numerical_facilities/special_functions/13_ellint_2/ | |
3852 | check_value.cc: New. | |
3853 | * testsuite/tr1/5_numerical_facilities/special_functions/13_ellint_2/ | |
3854 | compile_2.cc: New. | |
3855 | * testsuite/tr1/5_numerical_facilities/special_functions/14_ellint_3/ | |
3856 | compile.cc: New. | |
3857 | * testsuite/tr1/5_numerical_facilities/special_functions/14_ellint_3/ | |
3858 | check_nan.cc: New. | |
3859 | * testsuite/tr1/5_numerical_facilities/special_functions/14_ellint_3/ | |
3860 | check_value.cc: New. | |
3861 | * testsuite/tr1/5_numerical_facilities/special_functions/14_ellint_3/ | |
3862 | compile_2.cc: New. | |
3863 | * testsuite/tr1/5_numerical_facilities/special_functions/15_expint/ | |
3864 | check_value_neg.cc: New. | |
3865 | * testsuite/tr1/5_numerical_facilities/special_functions/15_expint/ | |
3866 | compile.cc: New. | |
3867 | * testsuite/tr1/5_numerical_facilities/special_functions/15_expint/ | |
3868 | check_nan.cc: New. | |
3869 | * testsuite/tr1/5_numerical_facilities/special_functions/15_expint/ | |
3870 | compile_2.cc: New. | |
3871 | * testsuite/tr1/5_numerical_facilities/special_functions/15_expint/ | |
3872 | check_value_pos.cc: New. | |
3873 | * testsuite/tr1/5_numerical_facilities/special_functions/16_hermite/ | |
3874 | compile.cc: New. | |
3875 | * testsuite/tr1/5_numerical_facilities/special_functions/16_hermite/ | |
3876 | check_nan.cc: New. | |
3877 | * testsuite/tr1/5_numerical_facilities/special_functions/16_hermite/ | |
3878 | compile_2.cc: New. | |
3879 | * testsuite/tr1/5_numerical_facilities/special_functions/17_hyperg/ | |
3880 | compile.cc: New. | |
3881 | * testsuite/tr1/5_numerical_facilities/special_functions/17_hyperg/ | |
3882 | check_nan.cc: New. | |
3883 | * testsuite/tr1/5_numerical_facilities/special_functions/17_hyperg/ | |
3884 | check_value.cc: New. | |
3885 | * testsuite/tr1/5_numerical_facilities/special_functions/17_hyperg/ | |
3886 | compile_2.cc: New. | |
3887 | * testsuite/tr1/5_numerical_facilities/special_functions/18_laguerre/ | |
3888 | compile.cc: New. | |
3889 | * testsuite/tr1/5_numerical_facilities/special_functions/18_laguerre/ | |
3890 | check_nan.cc: New. | |
3891 | * testsuite/tr1/5_numerical_facilities/special_functions/18_laguerre/ | |
3892 | check_value.cc: New. | |
3893 | * testsuite/tr1/5_numerical_facilities/special_functions/18_laguerre/ | |
3894 | compile_2.cc: New. | |
3895 | * testsuite/tr1/5_numerical_facilities/special_functions/19_legendre/ | |
3896 | compile.cc: New. | |
3897 | * testsuite/tr1/5_numerical_facilities/special_functions/19_legendre/ | |
3898 | check_nan.cc: New. | |
3899 | * testsuite/tr1/5_numerical_facilities/special_functions/19_legendre/ | |
3900 | check_value.cc: New. | |
3901 | * testsuite/tr1/5_numerical_facilities/special_functions/19_legendre/ | |
3902 | compile_2.cc: New. | |
3903 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3904 | 20_riemann_zeta/check_value_neg.cc: New. | |
3905 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3906 | 20_riemann_zeta/compile.cc: New. | |
3907 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3908 | 20_riemann_zeta/check_nan.cc: New. | |
3909 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3910 | 20_riemann_zeta/compile_2.cc: New. | |
3911 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3912 | 20_riemann_zeta/check_value_pos.cc: New. | |
3913 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3914 | 21_sph_bessel/compile.cc: New. | |
3915 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3916 | 21_sph_bessel/check_nan.cc: New. | |
3917 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3918 | 21_sph_bessel/check_value.cc: New. | |
3919 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3920 | 21_sph_bessel/compile_2.cc: New. | |
3921 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3922 | 22_sph_legendre/compile.cc: New. | |
3923 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3924 | 22_sph_legendre/check_nan.cc: New. | |
3925 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3926 | 22_sph_legendre/check_value.cc: New. | |
3927 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3928 | 22_sph_legendre/compile_2.cc: New. | |
3929 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3930 | 23_sph_neumann/compile.cc: New. | |
3931 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3932 | 23_sph_neumann/check_nan.cc: New. | |
3933 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3934 | 23_sph_neumann/check_value.cc: New. | |
3935 | * testsuite/tr1/5_numerical_facilities/special_functions/ | |
3936 | 23_sph_neumann/ compile_2.cc: New. | |
3937 | ||
43e03430 HPN |
3938 | 2007-03-15 Hans-Peter Nilsson <hp@axis.com> |
3939 | ||
3940 | * testsuite/lib/libstdc++.exp (v3-build_support) <ar>: If it | |
3941 | exists, use env(AR_FOR_TARGET). Log the command. | |
3942 | <ranlib>: Similar. | |
3943 | ||
0c20e4ec NS |
3944 | 2007-03-14 Nathan Sidwell <nathan@codesourcery.com> |
3945 | Joseph Myers <joseph@codesourcery.com>:: | |
3946 | ||
3947 | * testsuite/lib/libstdc++.exp (check_v3_target_fileio, | |
3948 | check_v3_target_time): New. | |
3949 | * testsuite/lib/dg-options.exp (dg-require-fileio, | |
3950 | dg-require-time): New. | |
3951 | * testsuite/ext/stdio_sync_filebuf/char/12048-1.cc: Use it. | |
3952 | * testsuite/ext/stdio_sync_filebuf/char/12048-2.cc: Use it. | |
3953 | * testsuite/ext/stdio_sync_filebuf/char/12048-3.cc: Use it. | |
3954 | * testsuite/ext/stdio_sync_filebuf/char/12048-4.cc: Use it. | |
3955 | * testsuite/ext/stdio_sync_filebuf/char/1.cc: Use it. | |
3956 | * testsuite/ext/stdio_filebuf/char/2.cc: Use it. | |
3957 | * testsuite/ext/stdio_filebuf/char/10063-1.cc: Use it. | |
3958 | * testsuite/ext/stdio_filebuf/char/10063-2.cc: Use it. | |
3959 | * testsuite/ext/stdio_filebuf/char/10063-3.cc: Use it. | |
3960 | * testsuite/22_locale/time_put/put/char/12439_1.cc: Use it. | |
3961 | * testsuite/22_locale/time_put/put/char/12439_3.cc: Use it. | |
3962 | * testsuite/27_io/basic_ofstream/open/char/1.cc: Use it. | |
3963 | * testsuite/27_io/basic_ofstream/cons/char/2.cc: Use it. | |
3964 | * testsuite/27_io/objects/char/12048-2.cc: Use it. | |
3965 | * testsuite/27_io/objects/char/12048-4.cc: Use it. | |
3966 | * testsuite/27_io/objects/char/12048-1.cc: Use it. | |
3967 | * testsuite/27_io/objects/char/12048-3.cc: Use it. | |
3968 | * testsuite/27_io/objects/char/10.cc: Use it. | |
3969 | * testsuite/27_io/objects/char/12048-5.cc: Use it. | |
3970 | * testsuite/27_io/basic_istream/get/char/2.cc: Use it. | |
3971 | * testsuite/27_io/basic_istream/ignore/char/2.cc: Use it. | |
3972 | * testsuite/27_io/basic_istream/ignore/char/3.cc: Use it. | |
3973 | * testsuite/27_io/basic_istream/getline/char/5.cc: Use it. | |
3974 | * testsuite/27_io/basic_istream/seekg/char/sstream.cc: Use it. | |
3975 | * testsuite/27_io/basic_istream/seekg/char/fstream.cc: Use it. | |
3976 | * testsuite/27_io/basic_istream/readsome/char/6746-2.cc: Use it. | |
3977 | * testsuite/27_io/basic_istream/extractors_other/char/2.cc: Use it. | |
3978 | * testsuite/27_io/basic_istream/tellg/char/sstream.cc: Use it. | |
3979 | * testsuite/27_io/basic_istream/tellg/char/1.cc: Use it. | |
3980 | * testsuite/27_io/basic_istream/tellg/char/fstream.cc: Use it. | |
3981 | * testsuite/27_io/basic_istream/extractors_character/char/4.cc: Use it. | |
3982 | * testsuite/27_io/basic_ostream/inserters_other/char/1.cc: Use it. | |
3983 | * testsuite/27_io/basic_ostream/tellp/char/1.cc: Use it. | |
3984 | * testsuite/27_io/basic_ostream/seekp/char/2346-fstream.cc: Use it. | |
3985 | * testsuite/27_io/basic_ifstream/open/char/1.cc: Use it. | |
3986 | * testsuite/27_io/basic_ifstream/cons/char/1.cc: Use it. | |
3987 | * testsuite/27_io/basic_filebuf/sputbackc/char/1-in.cc: Use it. | |
3988 | * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: Use it. | |
3989 | * testsuite/27_io/basic_filebuf/sputbackc/char/2-in.cc: Use it. | |
3990 | * testsuite/27_io/basic_filebuf/sputbackc/char/2-io.cc: Use it. | |
3991 | * testsuite/27_io/basic_filebuf/sgetn/char/3.cc: Use it. | |
3992 | * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: Use it. | |
3993 | * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Use it. | |
3994 | * testsuite/27_io/basic_filebuf/sgetn/char/2-in.cc: Use it. | |
3995 | * testsuite/27_io/basic_filebuf/sgetn/char/2-io.cc: Use it. | |
3996 | * testsuite/27_io/basic_filebuf/seekoff/12790-1.cc: Use it. | |
3997 | * testsuite/27_io/basic_filebuf/seekoff/12790-2.cc: Use it. | |
3998 | * testsuite/27_io/basic_filebuf/seekoff/12790-3.cc: Use it. | |
3999 | * testsuite/27_io/basic_filebuf/seekoff/12790-4.cc: Use it. | |
4000 | * testsuite/27_io/basic_filebuf/seekoff/char/1-in.cc: Use it. | |
4001 | * testsuite/27_io/basic_filebuf/seekoff/char/1-io.cc: Use it. | |
4002 | * testsuite/27_io/basic_filebuf/seekoff/char/1-out.cc: Use it. | |
4003 | * testsuite/27_io/basic_filebuf/seekoff/char/2-in.cc: Use it. | |
4004 | * testsuite/27_io/basic_filebuf/seekoff/char/2-io.cc: Use it. | |
4005 | * testsuite/27_io/basic_filebuf/seekoff/char/2-out.cc: Use it. | |
4006 | * testsuite/27_io/basic_filebuf/seekoff/char/3-in.cc: Use it. | |
4007 | * testsuite/27_io/basic_filebuf/seekoff/char/3-io.cc: Use it. | |
4008 | * testsuite/27_io/basic_filebuf/seekoff/char/3-out.cc: Use it. | |
4009 | * testsuite/27_io/basic_filebuf/seekoff/char/11543.cc: Use it. | |
4010 | * testsuite/27_io/basic_filebuf/seekoff/char/12790-1.cc: Use it. | |
4011 | * testsuite/27_io/basic_filebuf/seekoff/char/12790-2.cc: Use it. | |
4012 | * testsuite/27_io/basic_filebuf/seekoff/char/12790-3.cc: Use it. | |
4013 | * testsuite/27_io/basic_filebuf/seekoff/char/12790-4.cc: Use it. | |
4014 | * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Use it. | |
4015 | * testsuite/27_io/basic_filebuf/in_avail/char/9701-3.cc: Use it. | |
4016 | * testsuite/27_io/basic_filebuf/setbuf/char/1.cc: Use it. | |
4017 | * testsuite/27_io/basic_filebuf/setbuf/char/2.cc: Use it. | |
4018 | * testsuite/27_io/basic_filebuf/setbuf/char/3.cc: Use it. | |
4019 | * testsuite/27_io/basic_filebuf/setbuf/char/12875-1.cc: Use it. | |
4020 | * testsuite/27_io/basic_filebuf/setbuf/char/12875-2.cc: Use it. | |
4021 | * testsuite/27_io/basic_filebuf/sbumpc/char/1-in.cc: Use it. | |
4022 | * testsuite/27_io/basic_filebuf/sbumpc/char/1-io.cc: Use it. | |
4023 | * testsuite/27_io/basic_filebuf/sbumpc/char/2-in.cc: Use it. | |
4024 | * testsuite/27_io/basic_filebuf/sbumpc/char/2-io.cc: Use it. | |
4025 | * testsuite/27_io/basic_filebuf/sbumpc/char/9825.cc: Use it. | |
4026 | * testsuite/27_io/basic_filebuf/is_open/char/1.cc: Use it. | |
4027 | * testsuite/27_io/basic_filebuf/sputc/char/1-io.cc: Use it. | |
4028 | * testsuite/27_io/basic_filebuf/sputc/char/1-out.cc: Use it. | |
4029 | * testsuite/27_io/basic_filebuf/sputc/char/2-io.cc: Use it. | |
4030 | * testsuite/27_io/basic_filebuf/sputc/char/2-out.cc: Use it. | |
4031 | * testsuite/27_io/basic_filebuf/open/12790-1.cc: Use it. | |
4032 | * testsuite/27_io/basic_filebuf/open/char/1.cc: Use it. | |
4033 | * testsuite/27_io/basic_filebuf/open/char/2.cc: Use it. | |
4034 | * testsuite/27_io/basic_filebuf/open/char/3.cc: Use it. | |
4035 | * testsuite/27_io/basic_filebuf/overflow/char/2-unbuf.cc: Use it. | |
4036 | * testsuite/27_io/basic_filebuf/overflow/char/2.cc: Use it. | |
4037 | * testsuite/27_io/basic_filebuf/overflow/char/9988.cc: Use it. | |
4038 | * testsuite/27_io/basic_filebuf/overflow/char/9182-2.cc: Use it. | |
4039 | * testsuite/27_io/basic_filebuf/overflow/char/9169.cc: Use it. | |
4040 | * testsuite/27_io/basic_filebuf/snextc/char/1-in.cc: Use it. | |
4041 | * testsuite/27_io/basic_filebuf/snextc/char/1-io.cc: Use it. | |
4042 | * testsuite/27_io/basic_filebuf/snextc/char/2-in.cc: Use it. | |
4043 | * testsuite/27_io/basic_filebuf/snextc/char/2-io.cc: Use it. | |
4044 | * testsuite/27_io/basic_filebuf/sgetc/char/1-in.cc: Use it. | |
4045 | * testsuite/27_io/basic_filebuf/sgetc/char/1-io.cc: Use it. | |
4046 | * testsuite/27_io/basic_filebuf/sgetc/char/1-out.cc: Use it. | |
4047 | * testsuite/27_io/basic_filebuf/sgetc/char/2-in.cc: Use it. | |
4048 | * testsuite/27_io/basic_filebuf/sgetc/char/2-io.cc: Use it. | |
4049 | * testsuite/27_io/basic_filebuf/close/12790-1.cc: Use it. | |
4050 | * testsuite/27_io/basic_filebuf/close/char/1.cc: Use it. | |
4051 | * testsuite/27_io/basic_filebuf/close/char/12790-1.cc: Use it. | |
4052 | * testsuite/27_io/basic_filebuf/close/char/12790-2.cc: Use it. | |
4053 | * testsuite/27_io/basic_filebuf/close/char/2.cc: Use it. | |
4054 | * testsuite/27_io/basic_filebuf/close/char/12790-3.cc: Use it. | |
4055 | * testsuite/27_io/basic_filebuf/close/char/12790-4.cc: Use it. | |
4056 | * testsuite/27_io/basic_filebuf/close/char/4.cc: Use it. | |
4057 | * testsuite/27_io/basic_filebuf/underflow/10096.cc: Use it. | |
4058 | * testsuite/27_io/basic_filebuf/underflow/char/2.cc: Use it. | |
4059 | * testsuite/27_io/basic_filebuf/sungetc/char/1-in.cc: Use it. | |
4060 | * testsuite/27_io/basic_filebuf/sungetc/char/1-io.cc: Use it. | |
4061 | * testsuite/27_io/basic_filebuf/sungetc/char/2-in.cc: Use it. | |
4062 | * testsuite/27_io/basic_filebuf/sungetc/char/2-io.cc: Use it. | |
4063 | * testsuite/27_io/basic_filebuf/seekpos/12790-1.cc: Use it. | |
4064 | * testsuite/27_io/basic_filebuf/seekpos/12790-2.cc: Use it. | |
4065 | * testsuite/27_io/basic_filebuf/seekpos/12790-3.cc: Use it. | |
4066 | * testsuite/27_io/basic_filebuf/seekpos/char/12790-1.cc: Use it. | |
4067 | * testsuite/27_io/basic_filebuf/seekpos/char/12790-2.cc: Use it. | |
4068 | * testsuite/27_io/basic_filebuf/seekpos/char/12790-4.cc: Use it. | |
4069 | * testsuite/27_io/basic_filebuf/seekpos/char/1-in.cc: Use it. | |
4070 | * testsuite/27_io/basic_filebuf/seekpos/char/1-io.cc: Use it. | |
4071 | * testsuite/27_io/basic_filebuf/seekpos/char/1-out.cc: Use it. | |
4072 | * testsuite/27_io/basic_filebuf/seekpos/char/2-in.cc: Use it. | |
4073 | * testsuite/27_io/basic_filebuf/seekpos/char/2-io.cc: Use it. | |
4074 | * testsuite/27_io/basic_filebuf/seekpos/char/2-out.cc: Use it. | |
4075 | * testsuite/27_io/basic_filebuf/seekpos/char/3-in.cc: Use it. | |
4076 | * testsuite/27_io/basic_filebuf/seekpos/char/3-io.cc: Use it. | |
4077 | * testsuite/27_io/basic_filebuf/seekpos/char/3-out.cc: Use it. | |
4078 | * testsuite/27_io/basic_filebuf/sputn/char/1-io.cc: Use it. | |
4079 | * testsuite/27_io/basic_filebuf/sputn/char/1-out.cc: Use it. | |
4080 | * testsuite/27_io/basic_filebuf/sputn/char/2-io.cc: Use it. | |
4081 | * testsuite/27_io/basic_filebuf/sputn/char/2-out.cc: Use it. | |
4082 | * testsuite/27_io/basic_filebuf/sputn/char/9339.cc: Use it. | |
4083 | * testsuite/27_io/basic_filebuf/pbackfail/char/9761.cc: Use it. | |
4084 | * testsuite/27_io/basic_filebuf/sync/char/9182-1.cc: Use it. | |
7c62b943 BK |
4085 | * testsuite/21_strings/basic_string/inserters_extractors/ |
4086 | char/10.cc: Use it. | |
4087 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
4088 | char/11.cc: Use it. | |
4089 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
4090 | char/5.cc: Use it. | |
0c20e4ec | 4091 | |
d265b0b1 PC |
4092 | 2007-03-13 Paolo Carlini <pcarlini@suse.de> |
4093 | ||
4094 | * include/tr1/tuple: Only include <utility> for std::pair, and | |
4095 | forward declare reference_wrapper; formatting fixes. | |
4096 | * include/tr1/ref_fwd.h: Remove. | |
4097 | * include/tr1/tuple_defs.h: Remove, unused. | |
4098 | * include/Makefile.am: Update. | |
4099 | * include/Makefile.in: Regenerate. | |
4100 | * testsuite/tr1/6_containers/tuple/creation_functions/make_tuple.cc: | |
4101 | Include <tr1/functional> too. | |
4102 | ||
4103 | * include/tr1/tuple: Define tuple_size<tuple<_Elements...> >::value. | |
4104 | ||
a21856f7 SW |
4105 | 2007-03-12 Stephen M. Webb <stephen.webb@bregmasoft.com> |
4106 | ||
4107 | * include/tr1/regex: Add "boilerplate" implementations. | |
4108 | * testsuite/tr1/7_regular_expressions/regex_traits/wchar_t/ | |
4109 | translate_nocase.cc: New. | |
4110 | * testsuite/tr1/7_regular_expressions/regex_traits/wchar_t/ | |
4111 | ctor.cc: Likewise. | |
4112 | * testsuite/tr1/7_regular_expressions/regex_traits/char/ | |
4113 | translate_nocase.cc: Likewise. | |
4114 | * testsuite/tr1/7_regular_expressions/regex_traits/char/ | |
4115 | ctor.cc: Likewise. | |
4116 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4117 | c_string_ecma.cc: Likewise. | |
4118 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4119 | default.cc: Likewise. | |
4120 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4121 | c_string_grep.cc: Likewise. | |
4122 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4123 | c_string_extended.cc: Likewise. | |
4124 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4125 | c_string_basic.cc: Likewise. | |
4126 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4127 | c_string_awk.cc: Likewise. | |
4128 | * testsuite/tr1/7_regular_expressions/regex/cons/char/ | |
4129 | c_string_egrep.cc: Likewise. | |
4130 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ | |
4131 | range.cc: Likewise. | |
4132 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ | |
4133 | string_op.cc: Likewise. | |
4134 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ | |
4135 | string.cc: Likewise. | |
4136 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ | |
4137 | pstring.cc: Likewise. | |
4138 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ | |
4139 | cstring_op.cc: Likewise. | |
4140 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/wchar_t/ | |
4141 | cstring.cc: Likewise. | |
4142 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ | |
4143 | range.cc: Likewise. | |
4144 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ | |
4145 | string_op.cc: Likewise. | |
4146 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ | |
4147 | string.cc: Likewise. | |
4148 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ | |
4149 | pstring.cc: Likewise. | |
4150 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ | |
4151 | cstring_op.cc: Likewise. | |
4152 | * testsuite/tr1/7_regular_expressions/basic_regex/assign/char/ | |
4153 | cstring.cc: Likewise. | |
4154 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/ | |
4155 | range.cc: Likewise. | |
4156 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/ | |
4157 | default.cc: Likewise. | |
4158 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/ | |
4159 | string.cc: Likewise. | |
4160 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/ | |
4161 | pstring.cc: Likewise. | |
4162 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/ | |
4163 | cstring.cc: Likewise. | |
4164 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/ | |
4165 | range.cc: Likewise. | |
4166 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/ | |
4167 | default.cc: Likewise. | |
4168 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/ | |
4169 | string.cc: Likewise. | |
4170 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/ | |
4171 | pstring.cc: Likewise. | |
4172 | * testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/ | |
4173 | cstring.cc: Likewise. | |
4174 | * testsuite/tr1/7_regular_expressions/match_results/ctors/char/ | |
4175 | default.cc: Likewise. | |
4176 | ||
91b0b94a PC |
4177 | 2007-03-12 Paolo Carlini <pcarlini@suse.de> |
4178 | ||
4179 | * include/bits/stl_algo.h (swap_ranges): Move... | |
4180 | * include/bits/stl_algobase.h: ... here. | |
4181 | * include/tr1/array: Trim includes, stl_algobase.h is enough. | |
4182 | ||
bd91a8c4 PC |
4183 | 2007-03-11 Paolo Carlini <pcarlini@suse.de> |
4184 | ||
4185 | PR libstdc++/28080 (final) | |
4186 | * include/std/iosfwd: Do not include <bits/c++io.h>. | |
4187 | * config/io/basic_file_stdio.h: Do it here. | |
4188 | * include/ext/stdio_sync_filebuf.h: Likewise. | |
4189 | * include/ext/rope: Include <bits/gthr.h> unconditionally. | |
4190 | * include/std/fstream: Do not include <bits/gthr.h>. | |
4191 | ||
4192 | * include/std/ios: Do not include <cstdio>. | |
4193 | * include/bits/ios_base.h: Do it here. | |
4194 | * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust dg-error | |
4195 | line numbers. | |
4196 | * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise. | |
4197 | ||
b2c50382 PC |
4198 | 2007-03-10 Paolo Carlini <pcarlini@suse.de> |
4199 | ||
4200 | PR libstdc++/28080 (partial) | |
4201 | * include/std/memory: Move C++03 implementation... | |
4202 | * include/bits/stl_memory.h: ... here, new. | |
4203 | * include/Makefile.am: Add. | |
4204 | * include/bits/stl_tempbuf.h: Include the latter instead. | |
4205 | * include/tr1/hashtable: Include allocator.h instead of | |
4206 | the whole <memory>. | |
4207 | * include/tr1/hashtable_policy.h: Include stl_function.h | |
4208 | instead of <functional>. | |
4209 | * include/Makefile.in: Regenerate. | |
4210 | * testsuite/20_util/auto_ptr/assign_neg.cc: Adjust dg-error | |
4211 | line numbers. | |
4212 | ||
9eeea761 DG |
4213 | 2007-03-09 Douglas Gregor <doug.gregor@gmail.com> |
4214 | ||
4215 | * include/Makefile.in: Regenerate. | |
4216 | * include/tr1/mu_iterate.h: Remove. | |
4217 | * include/tr1/tuple (_Tuple_impl): New. | |
4218 | (tuple): Make variadic, re-implement as shell over _Tuple_impl. | |
4219 | (0-element tuple): Basis case. | |
4220 | (2-element tuple): Handle pair methods. | |
4221 | (__get_helper): Remove. | |
4222 | (tuple_element): Reimplement with variadic templates. | |
4223 | (tuple_size): Ditto. | |
4224 | (get): Ditto. | |
4225 | (operator==): Use variadic templates in the signature. | |
4226 | (operator<): Ditto. | |
4227 | (operator!=): Ditto. | |
4228 | (operator>): Ditto. | |
4229 | (operator<=): Ditto. | |
4230 | (operator>=): Ditto. | |
4231 | (__stripped_tuple_type): Remove; we've inlined its behavior. | |
4232 | (make_tuple): Reimplement with variadic templates. | |
4233 | (tie): Ditto. | |
4234 | * include/tr1/tuple_iterate.h: Remove. | |
4235 | * include/tr1/bind_repeat.h: Remove. | |
4236 | * include/tr1/ref_wrap_iterate.h: Remove. | |
4237 | * include/tr1/bind_iterate.h: Remove. | |
4238 | * include/tr1/functional (_Weak_result_type): Add variadic | |
4239 | partial specializations. | |
4240 | (result_of): Ditto. | |
4241 | (__invoke): Reimplement using variadic templates. | |
4242 | (reference_wrapper): Reimplement operator() with variadic | |
4243 | templates. | |
4244 | (_Maybe_unary_or_binary_function): New. | |
4245 | (_Mem_fn): Implement for member function pointers using variadic | |
4246 | templates. | |
4247 | (placeholders): Define 30 placeholders. | |
4248 | (_Index_tuple): New. | |
4249 | (_Build_index_tuple): New. | |
4250 | (_No_tuple_element): New. | |
4251 | (_Safe_tuple_element_impl): New. | |
4252 | (_Safe_tuple_element): New. | |
4253 | (_Mu): Reimplement with variadic templates, use | |
4254 | _Safe_tuple_element instead of tuple_element. | |
4255 | (_Bind): Reimplement with variadic templates and tuples. | |
4256 | (_Bind_result): Ditto. | |
4257 | (bind): Reimplement with variadic templates. | |
4258 | (_Function_handler): Ditto. | |
4259 | (function): Ditto. | |
4260 | * include/tr1/functional_iterate.h: Remove. | |
4261 | * include/tr1/repeat.h: Remove. | |
4262 | * include/Makefile.am: Don't install removed headers. | |
4263 | ||
4ba851b5 PC |
4264 | 2007-03-06 Paolo Carlini <pcarlini@suse.de> |
4265 | ||
4266 | PR libstdc++/28080 (partial) | |
4267 | * include/bits/stl_algobase.h: Do not include <cstdlib>. | |
4268 | * src/localename.cc: Do it here. | |
4269 | * src/ctype.cc: Likewise. | |
4270 | * include/ext/pb_ds/detail/map_debug_base.hpp: Likewise. | |
4271 | * include/ext/pb_ds/exception.hpp: Likewise. | |
4272 | * include/ext/pb_ds/list_update_policy.hpp: Likewise. | |
4273 | * include/bits/stl_algo.h: Likewise. | |
4274 | * include/tr1/random: Likewise. | |
4275 | * testsuite/util/testsuite_hooks.cc: Likewise. | |
4276 | * testsuite/util/testsuite_abi_check.cc: Likewise. | |
4277 | * testsuite/util/testsuite_abi.cc: Likewise. | |
4278 | * testsuite/util/performance/assoc/timing/ | |
4279 | tree_order_statistics_test.hpp: Likewise. | |
4280 | * config/locale/darwin/ctype_members.cc: Likewise. | |
4281 | * config/locale/gnu/c++locale_internal.h: Likewise. | |
4282 | * config/locale/generic/ctype_members.cc: Likewise. | |
4283 | * config/locale/generic/time_members.cc: Likewise. | |
4284 | ||
4285 | * include/ext/pb_ds/detail/resize_policy/ | |
4286 | hash_load_check_resize_trigger_imp.hpp: Qualify abort. | |
4287 | * testsuite/util/performance/assoc/timing/ | |
4288 | multimap_find_test.hpp: Likewise. | |
4289 | * include/std/valarray: Do include <cstdlib>. | |
4290 | * include/tr1/hashtable: Likewise. | |
4291 | ||
039183c9 JM |
4292 | 2007-03-05 Joseph Myers <joseph@codesourcery.com> |
4293 | ||
4294 | PR libstdc++/30675 | |
4295 | * testsuite/lib/libstdc++.exp (v3-build_support): Use [transform | |
4296 | "ar"] and [transform "ranlib"]. | |
4297 | ||
2881894e PC |
4298 | 2007-03-04 Paolo Carlini <pcarlini@suse.de> |
4299 | ||
4300 | * testsuite/27_io/basic_ostream/inserters_arithmetic/ | |
4301 | char/31031.cc: Include the right header. | |
4302 | ||
af13a7a6 BK |
4303 | 2007-03-04 Benjamin Kosnik <bkoz@redhat.com> |
4304 | ||
4305 | * acinclude.m4 (GLIBCXX_ENABLE_CHEADERS): Add c_global. | |
4306 | * configure.host (c_model): Set default to c_global. | |
4307 | * configure: Regenerate. | |
4308 | * include/Makefile.am (c_compatibility_headers_extra): Make | |
4309 | conditional on GLIBCXX_C_HEADERS_COMPATIBILITY. | |
4310 | (c_base_headers_extra): Make conditional on GLIBCXX_C_HEADERS_EXTRA. | |
4311 | (c_compatibility_headers): Make conditional on c/c_std/c_global. | |
4312 | * include/Makefile.in: Regenerate. | |
4313 | * docs/html/configopts.html: Add c_global information to | |
4314 | --enable-cheaders. Eventually, "c_std" should mean "C" includes | |
4315 | that are in namespace std, with optional C++ "C" compatibility | |
4316 | includes to inject into global scope. And "c_global" should mean | |
4317 | "C" includes that are in the global namespace, with C++ includes | |
4318 | injecting into namespace std and no C++ "C" compatibility | |
4319 | includes. | |
4320 | ||
4321 | 2007-03-04 Benjamin Kosnik <bkoz@redhat.com> | |
4322 | ||
4323 | * include/bits/c++config: Add _GLIBCXX_NAMEPACE_C. | |
4324 | Add _GLIBCXX_NAMESPACE_ASSOCIATION_CXX200x. | |
4325 | Add _GLIBCXX_TR1 as namespace macro. | |
4326 | Add namespace associations for std::__cxx200x conditionally. | |
4327 | ||
4328 | * include/c_compatibility/assert.h: Correct doxygen markup, | |
4329 | conditionalize the global injections on _GLIBCXX_NAMESPACE_C. | |
4330 | * include/c_compatibility/ctype.h: Same. | |
4331 | * include/c_compatibility/errno.h: Same. | |
4332 | * include/c_compatibility/float.h: Same. | |
4333 | * include/c_compatibility/iso646.h: Same. | |
4334 | * include/c_compatibility/limits.h: Same. | |
4335 | * include/c_compatibility/locale.h: Same. | |
4336 | * include/c_compatibility/math.h: Same. | |
4337 | * include/c_compatibility/setjmp.h: Same. | |
4338 | * include/c_compatibility/signal.h: Same. | |
4339 | * include/c_compatibility/stdarg.h: Same. | |
4340 | * include/c_compatibility/stddef.h: Same. | |
4341 | * include/c_compatibility/stdio.h: Same. | |
4342 | * include/c_compatibility/stdlib.h: Same. | |
4343 | * include/c_compatibility/string.h: Same. | |
4344 | * include/c_compatibility/time.h: Same. | |
4345 | * include/c_compatibility/wchar.h: Same. | |
4346 | * include/c_compatibility/wctype.h: Same. | |
4347 | ||
4348 | * include/c_compatibility/complex.h: Add. | |
4349 | * include/c_compatibility/fenv.h: Same. | |
4350 | * include/c_compatibility/inttypes.h: Same. | |
4351 | * include/c_compatibility/stdbool.h: Same. | |
4352 | * include/c_compatibility/stdint.h: Same. | |
4353 | * include/c_compatibility/tgmath.h: Same. | |
4354 | ||
4355 | * include/c_global/cassert: Add, use include_next, use C++0x features | |
4356 | if -std=c++0x. | |
4357 | * include/c_global/cctype: Same. | |
4358 | * include/c_global/cerrno: Same. | |
4359 | * include/c_global/cfloat: Same. | |
4360 | * include/c_global/ciso646: Same. | |
4361 | * include/c_global/climits: Same. | |
4362 | * include/c_global/clocale: Same. | |
4363 | * include/c_global/cmath: Same. | |
4364 | * include/c_global/cmath.tcc: Same. | |
4365 | * include/c_global/csetjmp: Same. | |
4366 | * include/c_global/csignal: Same. | |
4367 | * include/c_global/cstdarg: Same. | |
4368 | * include/c_global/cstddef: Same. | |
4369 | * include/c_global/cstdio: Same. | |
4370 | * include/c_global/cstdlib: Same. | |
4371 | * include/c_global/cstring: Same. | |
4372 | * include/c_global/ctime: Same. | |
4373 | * include/c_global/cwchar: Same. | |
4374 | * include/c_global/cwctype: Same. | |
4375 | ||
4376 | * include/c_global/ccomplex: Add. | |
4377 | * include/c_global/cfenv: Add. | |
4378 | * include/c_global/cinttypes: Add. | |
4379 | * include/c_global/cstdbool: Add. | |
4380 | * include/c_global/cstdint: Add. | |
4381 | * include/c_global/ctgmath: Add. | |
4382 | ||
4383 | * include/std/algorithm: Use C++0x features if -std=c++0x. | |
4384 | * include/std/bitset: Same. | |
4385 | * include/std/complex: Same. | |
4386 | * include/std/deque: Same. | |
4387 | * include/std/fstream: Same. | |
4388 | * include/std/functional: Same. | |
4389 | * include/std/iomanip: Same. | |
4390 | * include/std/ios: Same. | |
4391 | * include/std/iosfwd: Same. | |
4392 | * include/std/iostream: Same. | |
4393 | * include/std/istream: Same. | |
4394 | * include/std/iterator: Same. | |
4395 | * include/std/limits: Same. | |
4396 | * include/std/list: Same. | |
4397 | * include/std/locale: Same. | |
4398 | * include/std/map: Same. | |
4399 | * include/std/memory: Same. | |
4400 | * include/std/numeric: Same. | |
4401 | * include/std/ostream: Same. | |
4402 | * include/std/queue: Same. | |
4403 | * include/std/set: Same. | |
4404 | * include/std/sstream: Same. | |
4405 | * include/std/stack: Same. | |
4406 | * include/std/stdexcept: Same. | |
4407 | * include/std/streambuf: Same. | |
4408 | * include/std/string: Same. | |
4409 | * include/std/utility: Same. | |
4410 | * include/std/valarray: Same. | |
4411 | * include/std/vector: Same. | |
4412 | ||
4413 | * include/std/array: Add. | |
4414 | * include/std/random: Add. | |
4415 | * include/std/regex: Add. | |
4416 | * include/std/tuple: Add. | |
4417 | * include/std/type_traits: Add. | |
4418 | * include/std/unordered_map: Add. | |
4419 | * include/std/unordered_set: Add. | |
4420 | * include/std/c++0x_warning.h: Add. | |
4421 | ||
4422 | * include/tr1/array: Switch namespaces based on _GLIBCXX_TR1. | |
4423 | * include/tr1/boost_shared_ptr.h: Same. | |
4424 | * include/tr1/cctype: Same. | |
4425 | * include/tr1/cfenv: Same. | |
4426 | * include/tr1/cinttypes: Same. | |
4427 | * include/tr1/cmath: Same. | |
4428 | * include/tr1/common.h: Same. | |
4429 | * include/tr1/complex: Same. | |
4430 | * include/tr1/cstdint: Same. | |
4431 | * include/tr1/cstdio: Same. | |
4432 | * include/tr1/cstdlib: Same. | |
4433 | * include/tr1/cwchar: Same. | |
4434 | * include/tr1/cwctype: Same. | |
4435 | * include/tr1/functional: Same. | |
4436 | * include/tr1/functional_hash.h: Same. | |
4437 | * include/tr1/functional_iterate.h: Same. | |
4438 | * include/tr1/hashtable: Same. | |
4439 | * include/tr1/hashtable_policy.h: Same. | |
4440 | * include/tr1/math.h: Same. | |
4441 | * include/tr1/memory: Same. | |
4442 | * include/tr1/random: Same. | |
4443 | * include/tr1/random.tcc: Same. | |
4444 | * include/tr1/ref_fwd.h: Same. | |
4445 | * include/tr1/repeat.h: Same. | |
4446 | * include/tr1/stdlib.h: Same. | |
4447 | * include/tr1/tuple: Same. | |
4448 | * include/tr1/tuple_iterate.h: Same. | |
4449 | * include/tr1/type_traits: Same. | |
4450 | * include/tr1/type_traits_fwd.h: Same. | |
4451 | * include/tr1/unordered_map: Same. | |
4452 | * include/tr1/unordered_set: Same. | |
4453 | * include/tr1/utility: Same. | |
4454 | ||
4455 | * include/tr1/ccomplex: Add. | |
4456 | * include/tr1/complex.h: Add. | |
4457 | * include/tr1/regex: Add. | |
4458 | ||
4459 | * include/Makefile.am: Add C++0x headers, "C" compatibility headers. | |
4460 | * include/Makefile.in: Regenerate. | |
4461 | ||
4462 | * testsuite/tr1/headers.cc: Add in regex/complex. | |
4463 | ||
4464 | * testsuite/17_intro/headers/c++200x/all.cc: New. | |
4465 | * testsuite/17_intro/headers/c++200x/all_multiple_inclusion.cc: Same. | |
4466 | * testsuite/17_intro/using_namespace_std_tr1_neg.cc: Same. | |
4467 | * testsuite/18_support/headers/cstdbool/std_c++0x_neg.cc: Same. | |
4468 | * testsuite/18_support/headers/cstdint/std_c++0x_neg.cc: Same. | |
4469 | * testsuite/18_support/headers/cstdint/types_std_c++0x.cc: Same. | |
4470 | * testsuite/20_util/enable_shared_from_this/requirements/ | |
4471 | explicit_instantiation.cc: Same. | |
4472 | * testsuite/20_util/headers/functional/types_std_c++0x.cc: Same. | |
4473 | * testsuite/20_util/headers/functional/ | |
4474 | using_namespace_std_placeholders.cc: Same. | |
4475 | * testsuite/20_util/headers/memory/types_std_c++0x.cc: Same. | |
4476 | * testsuite/20_util/headers/type_traits/std_c++0x_neg.cc: Same. | |
4477 | * testsuite/20_util/headers/type_traits/types_std_c++0x.cc: Same. | |
4478 | * testsuite/20_util/shared_ptr/requirements/ | |
4479 | explicit_instantiation.cc: Same. | |
4480 | * testsuite/20_util/weak_ptr/requirements/ | |
4481 | explicit_instantiation.cc: Same. | |
4482 | * testsuite/23_containers/array/requirements/ | |
4483 | explicit_instantiation.cc: Same. | |
4484 | * testsuite/23_containers/hash/requirements/ | |
4485 | explicit_instantiation.cc: Same. | |
4486 | * testsuite/23_containers/headers/array/std_c++0x_neg.cc: Same. | |
4487 | * testsuite/23_containers/headers/tuple/std_c++0x_neg.cc: Same. | |
4488 | * testsuite/23_containers/headers/tuple/types_std_c++0x.cc: Same. | |
4489 | * testsuite/23_containers/headers/unordered_map/std_c++0x_neg.cc: Same. | |
4490 | * testsuite/23_containers/headers/unordered_set/std_c++0x_neg.cc: Same. | |
4491 | * testsuite/23_containers/tuple/requirements/ | |
4492 | explicit_instantiation.cc: Same. | |
4493 | * testsuite/23_containers/unordered_map/requirements/ | |
4494 | explicit_instantiation.cc: Same. | |
4495 | * testsuite/23_containers/unordered_multimap/requirements/ | |
4496 | explicit_instantiation.cc: Same. | |
4497 | * testsuite/23_containers/unordered_multiset/requirements/ | |
4498 | explicit_instantiation.cc: Same. | |
4499 | * testsuite/23_containers/unordered_set/requirements/ | |
4500 | explicit_instantiation.cc: Same. | |
4501 | * testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc: Same. | |
4502 | * testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc: Same. | |
4503 | * testsuite/26_numerics/headers/cfenv/types_std_c++0x.cc: Same. | |
4504 | * testsuite/26_numerics/headers/cmath/types_std_c++0x.cc: Same. | |
4505 | * testsuite/26_numerics/headers/cstdlib/types_std_c++0x.cc: Same. | |
4506 | * testsuite/26_numerics/headers/ctgmath/std_c++0x_neg.cc: Same. | |
4507 | * testsuite/26_numerics/headers/random/std_c++0x_neg.cc: Same. | |
4508 | * testsuite/26_numerics/headers/random/types_std_c++0x.cc: Same. | |
4509 | * testsuite/27_io/headers/cinttypes/std_c++0x_neg.cc: Same. | |
4510 | * testsuite/27_io/headers/cinttypes/types_std_c++0x.cc: Same. | |
4511 | * testsuite/28_regex/headers/regex/std_c++0x_neg.cc: Same. | |
4512 | ||
4513 | * testsuite/tr1/8_c_compatibility/cfenv/types.cc: Rename ... | |
4514 | * testsuite/tr1/8_c_compatibility/cinttypes/types.cc: Same. | |
4515 | * testsuite/tr1/8_c_compatibility/cmath/types.cc: Same. | |
4516 | * testsuite/tr1/8_c_compatibility/cstdint/types.cc: Same. | |
4517 | * testsuite/tr1/8_c_compatibility/cstdlib/types.cc: Same. | |
4518 | * testsuite/tr1/8_c_compatibility/cfenv/types_std_tr1.cc: ...to this. | |
4519 | * testsuite/tr1/8_c_compatibility/cinttypes/types_std_tr1.cc: Same. | |
4520 | * testsuite/tr1/8_c_compatibility/cmath/types_std_tr1.cc: Same. | |
4521 | * testsuite/tr1/8_c_compatibility/cstdint/types_std_tr1.cc: Same. | |
4522 | * testsuite/tr1/8_c_compatibility/cstdlib/types_std_tr1.cc: Same. | |
4523 | ||
f12409e6 PC |
4524 | 2007-03-03 Paolo Carlini <pcarlini@suse.de> |
4525 | ||
4526 | PR libstdc++/31031 | |
4527 | * include/bits/istream.tcc: Inhibit implicit instantiation of | |
4528 | the _M_insert helpers. | |
4529 | * include/bits/ostream.tcc: Likewise for _M_extract. | |
4530 | * testsuite/27_io/basic_ostream/inserters_arithmetic/char/ | |
4531 | 31031.cc: New. | |
4532 | * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/ | |
4533 | 31031.cc: Likewise. | |
4534 | ||
4e09692d BK |
4535 | 2007-03-03 Benjamin Kosnik <bkoz@redhat.com> |
4536 | ||
4537 | * include/debug/functions.h: Use cstddef. | |
4538 | ||
4539 | * testsuite/tr1/3_function_objects/headers/functional/ | |
4540 | using_namespace_std_tr1_placeholders.cc: Fix include. | |
4541 | ||
9f1fd474 BK |
4542 | 2007-03-03 Benjamin Kosnik <bkoz@redhat.com> |
4543 | ||
4544 | * crossconfig.m4 (djgpp): Correct builtin defines to HAVE___, | |
4545 | instead of HAVE____. | |
4546 | * configure: Regenerate. | |
4547 | ||
39b8cd70 PC |
4548 | 2007-03-03 Paolo Carlini <pcarlini@suse.de> |
4549 | ||
4550 | PR libstdc++/28080 (partial) | |
4551 | * include/bits/stl_algobase.h: Do not include <iosfwd>, | |
4552 | <bits/functexcept.h> is enough; adjust __copy_aux declarations; | |
4553 | remove declaration of copy overload for istreambuf_iterator / | |
4554 | ostreambuf_iterator. | |
4555 | * src/debug.cc: Include <cstdio>. | |
4556 | * include/ext/rope: Include <iosfwd>. | |
4557 | * include/bits/char_traits.h: Include <cstdio> and <cwchar>. | |
4558 | * include/bits/stl_algo.h: Remove declaration of find overload | |
4559 | for istreambuf_iterator. | |
4560 | * include/std/queue: Clean up includes. | |
4561 | * include/std/stack: Likewise. | |
4562 | * include/std/memory: Likewise. | |
4563 | * include/std/algorithm: Likewise. | |
4564 | * include/std/vector: Likewise. | |
4565 | * include/std/deque: Likewise. | |
4566 | * include/std/list: Likewise. | |
4567 | * include/bits/stl_tree.h: Likewise. | |
4568 | * testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Adjust | |
4569 | dg-error markers. | |
4570 | * testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Likewise. | |
4571 | * testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Likewise. | |
4572 | * testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Likewise. | |
4573 | * testsuite/23_containers/set/operators/1_neg.cc: Likewise. | |
4574 | * testsuite/23_containers/map/operators/1_neg.cc: Likewise. | |
4575 | * testsuite/20_util/auto_ptr/assign_neg.cc: Likewise. | |
4576 | ||
4577 | * include/ext/type_traits.h: Fix type of __max_digits10; clean up | |
4578 | includes. | |
4579 | ||
4580 | * testsuite/util/testsuite_hooks.h: Do not include <cstddef>. | |
4581 | * testsuite/util/testsuite_hooks.cc: Do it here. | |
4582 | ||
debac9f4 PC |
4583 | 2007-03-02 Paolo Carlini <pcarlini@suse.de> |
4584 | ||
4585 | * testsuite/27_io/objects/wchar_t/9661-1.cc: Include <cstdlib>. | |
4586 | * testsuite/27_io/objects/wchar_t/7.cc: Likewise. | |
4587 | * testsuite/27_io/objects/char/9661-1.cc: Likewise. | |
4588 | * testsuite/27_io/objects/char/7.cc: Likewise. | |
4589 | * testsuite/27_io/basic_istream/ignore/wchar_t/2.cc: Likewise. | |
4590 | * testsuite/27_io/basic_istream/ignore/char/2.cc: Likewise. | |
4591 | * testsuite/27_io/basic_istream/getline/wchar_t/5.cc: Likewise. | |
4592 | * testsuite/27_io/basic_istream/getline/char/5.cc: Likewise. | |
4593 | * testsuite/27_io/basic_istream/extractors_arithmetic/char/ | |
4594 | 11.cc: Likewise. | |
4595 | * testsuite/27_io/basic_istream/extractors_character/wchar_t/ | |
4596 | 4.cc: Likewise. | |
4597 | * testsuite/27_io/basic_istream/extractors_character/char/ | |
4598 | 4.cc: Likewise. | |
4599 | * testsuite/27_io/basic_ostream/seekp/wchar_t/ | |
4600 | 2346-fstream.cc: Likewise. | |
4601 | * testsuite/27_io/basic_ostream/seekp/char/ | |
4602 | 2346-fstream.cc: Likewise. | |
4603 | * testsuite/27_io/basic_filebuf/seekoff/char/26777.cc: Likewise. | |
4604 | * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-2.cc: Likewise. | |
4605 | * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc: Likewise. | |
4606 | * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise. | |
4607 | * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise. | |
4608 | * testsuite/27_io/basic_filebuf/close/char/4879.cc: Likewise. | |
4609 | * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise. | |
4610 | * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise. | |
4611 | * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: Likewise. | |
4612 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
4613 | wchar_t/10.cc: Likewise. | |
4614 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
4615 | wchar_t/11.cc: Likewise. | |
4616 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
4617 | char/10.cc: Likewise. | |
4618 | * testsuite/21_strings/basic_string/inserters_extractors/ | |
4619 | char/11.cc: Likewise. | |
4620 | * testsuite/ext/pb_ds/example/trie_dna.cc: Likewise. | |
4621 | * testsuite/ext/new_allocator/deallocate_global.cc: Likewise. | |
4622 | * testsuite/ext/new_allocator/deallocate_local.cc: Likewise. | |
4623 | * testsuite/performance/27_io/filebuf_sgetn_unbuf.cc: Likewise. | |
4624 | * testsuite/performance/27_io/ifstream_getline.cc: Likewise. | |
4625 | * testsuite/22_locale/locale/cons/4.cc: Likewise. | |
4626 | * testsuite/22_locale/locale/cons/5.cc: Likewise. | |
4627 | * testsuite/tr1/2_general_utilities/shared_ptr/thread/ | |
4628 | mutex_weaktoshared.cc: Likewise. | |
4629 | * testsuite/tr1/2_general_utilities/shared_ptr/thread/ | |
4630 | default_weaktoshared.cc: Likewise. | |
4631 | * testsuite/thread/pthread5.cc: Likewise. | |
4632 | * testsuite/thread/pthread1.cc: Likewise. | |
4633 | * testsuite/23_containers/deque/cons/assign/1.cc: Likewise. | |
4634 | ||
1769232d PC |
4635 | 2007-03-02 Paolo Carlini <pcarlini@suse.de> |
4636 | ||
4637 | * testsuite/thread/pthread1.cc: Include <pthread.h>. | |
4638 | * testsuite/thread/pthread2.cc: Likewise. | |
4639 | * testsuite/thread/pthread3.cc: Likewise. | |
4640 | * testsuite/thread/pthread4.cc: Likewise. | |
4641 | * testsuite/thread/pthread5.cc: Likewise. | |
4642 | * testsuite/thread/pthread6.cc: Likewise. | |
4643 | * testsuite/thread/pthread7-rope.cc: Likewise. | |
4644 | ||
4645 | 2007-03-02 Paolo Carlini <pcarlini@suse.de> | |
4646 | ||
4647 | PR libstdc++/28080 (partial) | |
4648 | * include/tr1/random (class random_device): Rework to use simple | |
4649 | <cstdio> input, do not include <fstream>. | |
4650 | * include/tr1/random.tcc (all inserters and extractors): Refer | |
4651 | to ios_base as base class of basic_istream or basic_ostream. | |
4652 | ||
dd8e0a66 BM |
4653 | 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com> |
4654 | ||
4655 | * Makefile.am: Add dummy install-pdf target. | |
4656 | * Makefile.in: Regenerate | |
4657 | ||
96e7e5ad PC |
4658 | 2007-03-01 Paolo Carlini <pcarlini@suse.de> |
4659 | ||
4660 | PR libstdc++/31005 | |
4661 | * include/bits/localefwd.h: Include <cctype>. | |
4662 | ||
f4e39278 PC |
4663 | 2007-02-27 Paolo Carlini <pcarlini@suse.de> |
4664 | ||
4665 | PR libstdc++/28080 (partial) | |
4666 | * include/std/bitset: Do not include <ios>, <iosfwd> is enough. | |
4667 | (operator>>(std::basic_istream<>&, bitset<>&)): Tweak, refer to | |
4668 | ios_base as a base of basic_istream. | |
4669 | * include/std/iomanip: Do not include <ios>, <iosfwd> + | |
4670 | <bits/ios_base.h> is enough. | |
4671 | * include/std/iosfwd: Do not include <cctype> here... | |
4672 | * include/bits/locale_facets.h: ... do it here, when needed. | |
4673 | * include/bits/ostream.tcc: Clean up, do not include <locale> here... | |
4674 | * include/std/ostream: ... here instead. | |
4675 | * include/bits/istream.tcc: Likewise for <locale> and <ostream>... | |
4676 | * include/std/istream: ... here. | |
4677 | * include/bits/sstream.tcc: Do not include <sstream>. | |
4678 | ||
daa07a06 RG |
4679 | 2007-02-27 Richard Guenther <rguenther@suse.de> |
4680 | ||
4681 | * acinclude.m4: Adjust regular expression for ld version extraction. | |
4682 | * configure: Regenerate. | |
4683 | ||
9bb68d2a DD |
4684 | 2007-02-26 DJ Delorie <dj@redhat.com> |
4685 | ||
4686 | * crossconfig.m4 (djgpp): Pre-detect djgpp-specific results, to | |
4687 | avoid needing to link during cross compiling. | |
4688 | * configure: Regenerated. | |
4689 | ||
681a6919 PC |
4690 | 2007-02-26 Paolo Carlini <pcarlini@suse.de> |
4691 | ||
4692 | PR libstdc++/28080 (partial) | |
4693 | * include/std/bitset: Do not include <istream> and <ostream>, | |
4694 | <ios> is enough. | |
4695 | * include/std/iomanip: Do not include the whole <istream>, | |
4696 | <ios> is enough; do not include <functional>; reformat. | |
4697 | * include/std/functional: Do not include <cstddef>. | |
4698 | * include/std/list: Do not include <bits/stl_uninitialized.h>. | |
4699 | * include/std/numeric: Do not include the whole <iterator> and | |
4700 | <bits/stl_function.h>. | |
4701 | * include/std/valarray: Do not include <numeric>. | |
4702 | * include/bits/stl_numeric.h: Include <bits/concept_check.h>. | |
4703 | * src/iostream-inst.cc: Include <istream>. | |
4704 | * include/ext/functional: Include <cstddef>. | |
4705 | * testsuite/util/testsuite_hooks.h: Do not include <locale>, | |
4706 | <ctime> is enough; qualify tm. | |
4707 | * testsuite/util/testsuite_hooks.cc: Qualify tm. | |
4708 | ||
4709 | 2007-02-26 Paolo Carlini <pcarlini@suse.de> | |
4710 | ||
4711 | * include/bits/locale_facets.h (class ctype_byname<char>, | |
4712 | class ctype_byname<wchar_t>): Declare. | |
4713 | * src/ctype.cc (ctype_byname<wchar_t>::ctype_byname(const char*, | |
4714 | size_t), ctype_byname<wchar_t>::~ctype_byname): Define. | |
4715 | * config/locale/generic/ctype_members.cc (ctype_byname<char>:: | |
4716 | ctype_byname(const char*, size_t), ctype_byname<char>::~ctype_byname): | |
4717 | Likewise. | |
4718 | * config/locale/gnu/ctype_members.cc (ctype_byname<char>:: | |
4719 | ctype_byname(const char*, size_t), ctype_byname<char>::~ctype_byname): | |
4720 | Likewise. | |
4721 | * config/locale/darwin/ctype_members.cc (ctype_byname<char>:: | |
4722 | ctype_byname(const char*, size_t), ctype_byname<char>::~ctype_byname): | |
4723 | Likewise. | |
4724 | * testsuite/22_locale/headers/locale/synopsis.cc: Remove xfail. | |
4725 | ||
710c45f6 PC |
4726 | 2007-02-25 Paolo Carlini <pcarlini@suse.de> |
4727 | ||
4728 | * testsuite/19_diagnostics/headers/cerrno/macros.cc: Include | |
4729 | the right header. | |
4730 | * testsuite/18_support/headers/cstdlib/macros.cc: Likewise. | |
4731 | ||
c0c424e4 PC |
4732 | 2007-02-23 Paolo Carlini <pcarlini@suse.de> |
4733 | ||
4734 | PR libstdc++/25896 | |
4735 | * include/tr1/hashtable (_Hashtable<>::erase(const key_type&)): | |
4736 | Take care of &_M_extract((*__slot)->_M_v) == &__k. | |
4737 | ||
4738 | * testsuite/tr1/6_containers/unordered_map/erase/1.cc: New. | |
4739 | * testsuite/tr1/6_containers/unordered_multimap/erase/1.cc: Likewise. | |
4740 | * testsuite/tr1/6_containers/unordered_multiset/erase/1.cc: Likewise. | |
4741 | * testsuite/tr1/6_containers/unordered_set/erase/1.cc: Likewise. | |
4742 | ||
4be4340a MM |
4743 | 2007-02-23 Mark Mitchell <mark@codesourcery.com> |
4744 | ||
4745 | * testsuite/27_io/ios_base/sync_with_stdio/1.cc: XFAIL for wrapped | |
4746 | targets. | |
4747 | ||
4748 | 2007-02-23 Mark Mitchell <mark@codesourcery.com> | |
8371ec74 MM |
4749 | |
4750 | * testsuite/26_numerics/headers/cmath/c99_classification_macros_c.cc: | |
4751 | XFAIL for Newlib targets. | |
4752 | ||
1631cbcf SM |
4753 | 2007-02-22 Simon Martin <simartin@users.sourceforge.net> |
4754 | ||
4755 | * testsuite/27_io/basic_ios/cons/char/3.cc: Fixed type mismatches in | |
4756 | explicit instantiations. | |
9f1fd474 BK |
4757 | * testsuite/27_io/basic_istream/extractors_other/pod/ |
4758 | 3983-3.cc: Likewise. | |
1631cbcf SM |
4759 | * testsuite/27_io/basic_istream/extractors_arithmetic/pod/3983-1.cc: |
4760 | Likewise. | |
4761 | * testsuite/27_io/basic_istream/extractors_character/pod/3983-2.cc: | |
4762 | Likewise. | |
4763 | * testsuite/27_io/basic_istream/sentry/pod/1.cc: Likewise. | |
4764 | * testsuite/27_io/basic_ostream/sentry/pod/1.cc: Likewise. | |
9f1fd474 BK |
4765 | * testsuite/21_strings/basic_string/inserters_extractors/ |
4766 | pod/10081-in.cc: Likewise. | |
4767 | * testsuite/21_strings/basic_string/inserters_extractors/pod/ | |
4768 | 10081-out.cc: Likewise. | |
1631cbcf SM |
4769 | * testsuite/21_strings/basic_string/capacity/1.cc: Likewise. |
4770 | ||
e8020d1f PC |
4771 | 2007-02-22 Paolo Carlini <pcarlini@suse.de> |
4772 | ||
4773 | * include/tr1/unordered_map (class __unordered_map, | |
4774 | class __unordered_multimap): New. | |
4775 | (class unordered_map, class unordered_multimap): Forward to | |
4776 | the latter. | |
4777 | * include/tr1/unordered_set: Likewise for unordered_set and | |
4778 | unordered_multiset. | |
4779 | * testsuite/tr1/6_containers/headers/unordered_set/synopsis.cc: | |
4780 | Remove xfail. | |
4781 | * testsuite/tr1/6_containers/headers/unordered_map/synopsis.cc: | |
4782 | Likewise. | |
4783 | * testsuite/tr1/6_containers/unordered_multimap/requirements/ | |
4784 | explicit_instantiation.cc: Adjust. | |
4785 | * testsuite/tr1/6_containers/unordered_set/requirements/ | |
4786 | explicit_instantiation.cc: Likewise. | |
4787 | * testsuite/tr1/6_containers/unordered_map/requirements/ | |
4788 | explicit_instantiation.cc: Likewise. | |
4789 | * testsuite/tr1/6_containers/unordered_multiset/requirements/ | |
4790 | explicit_instantiation.cc: Likewise. | |
4791 | * testsuite/tr1/6_containers/unordered_map/24064.cc: Likewise. | |
4792 | * testsuite/util/native_type/assoc/native_hash_set.hpp: Likewise. | |
4793 | * testsuite/util/native_type/assoc/native_hash_map.hpp: Likewise. | |
4794 | ||
d1fb5e1c MM |
4795 | 2007-02-20 Mark Mitchell <mark@codesourcery.com> |
4796 | ||
4797 | * testsuite/lib/libstdc++.exp (libstdc++_init): Compile testglue | |
4798 | with -fexceptions. | |
4799 | ||
41e56bf7 PC |
4800 | 2007-02-20 Paolo Carlini <pcarlini@suse.de> |
4801 | ||
4802 | PR libstdc++/28080 (partial) | |
4803 | * include/tr1/functional: Split out hash bits to... | |
4804 | * include/tr1/functional_hash.h: ...here. | |
4805 | * include/Makefile.am: Add. | |
4806 | * include/tr1/unordered_set: Include the latter instead. | |
4807 | * include/tr1/unordered_map: Likewise. | |
4808 | * include/tr1/random: Do not include the whole <algorithm>, | |
4809 | stl_algobase.h is enough. | |
4810 | * include/tr1/memory: Likewise. | |
4811 | * include/Makefile.in: Regenerate. | |
4812 | ||
4813 | * include/tr1/utility (get(std::pair<>&), get(const std::pair<>&)): | |
4814 | Mark inline. | |
4815 | ||
f05e2819 BK |
4816 | 2007-02-20 Benjamin Kosnik <bkoz@redhat.com> |
4817 | ||
4818 | Directory layout flattening. | |
4819 | ||
4820 | Added in testsuite: | |
4821 | * 20_util/allocator | |
4822 | * 20_util/auto_ptr | |
4823 | * 20_util/function_objects | |
4824 | * 20_util/function_objects/binders | |
4825 | * 20_util/function_objects/binders/1.cc | |
4826 | * 20_util/function_objects/binders/3113.cc | |
4827 | * 20_util/function_objects/comparisons.cc | |
4828 | * 20_util/pair | |
4829 | * 20_util/raw_storage_iterator | |
4830 | * 20_util/rel_ops.cc | |
4831 | * 20_util/specialized_algorithms | |
4832 | * 20_util/specialized_algorithms/16505.cc | |
4833 | * 20_util/temporary_buffer.cc | |
4834 | * 26_numerics/numeric_arrays/slice_array | |
4835 | * 26_numerics/numeric_arrays/slice_array/array_assignment.cc | |
4836 | * 26_numerics/numeric_arrays/slice_array/requirements | |
4837 | * 26_numerics/numeric_arrays/slice_array/requirements/ | |
4838 | explicit_instantiation.cc | |
4839 | * 26_numerics/numeric_arrays/slice_array/requirements/typedefs.cc | |
4840 | * 26_numerics/numeric_arrays/valarray | |
4841 | * 26_numerics/numeric_arrays/valarray/27867.cc | |
4842 | * 26_numerics/numeric_arrays/valarray/28277.cc | |
4843 | * 26_numerics/numeric_arrays/valarray/30416.cc | |
4844 | * 26_numerics/numeric_arrays/valarray/algo.cc | |
4845 | * 26_numerics/numeric_arrays/valarray/binary_closure.cc | |
4846 | * 26_numerics/numeric_arrays/valarray/const_bracket.cc | |
4847 | * 26_numerics/numeric_arrays/valarray/dr543.cc | |
4848 | * 26_numerics/numeric_arrays/valarray/name_lookup.cc | |
4849 | * 26_numerics/numeric_arrays/valarray/operators.cc | |
4850 | * 26_numerics/numeric_arrays/valarray/requirements | |
4851 | * 26_numerics/numeric_arrays/valarray/requirements/ | |
4852 | explicit_instantiation.cc | |
4853 | * 26_numerics/numeric_arrays/valarray/requirements/typedefs.cc | |
4854 | * 26_numerics/numeric_arrays/valarray/subset_assignment.cc | |
4855 | * tr1/2_general_utilities/enable_shared_from_this | |
4856 | * tr1/2_general_utilities/shared_ptr | |
4857 | * tr1/2_general_utilities/weak_ptr | |
4858 | ||
4859 | Deleted in testsuite: | |
4860 | * 20_util/functional | |
4861 | * 20_util/functional/binders | |
4862 | * 20_util/functional/binders/1.cc | |
4863 | * 20_util/functional/binders/3113.cc | |
4864 | * 20_util/functional/comparisons.cc | |
4865 | * 20_util/memory | |
4866 | * 20_util/memory/16505.cc | |
4867 | * 20_util/memory/allocator | |
4868 | * 20_util/memory/allocator/10378.cc | |
4869 | * 20_util/memory/allocator/14176.cc | |
4870 | * 20_util/memory/allocator/1.cc | |
4871 | * 20_util/memory/allocator/8230.cc | |
4872 | * 20_util/memory/allocator/requirements | |
4873 | * 20_util/memory/allocator/requirements/explicit_instantiation | |
4874 | * 20_util/memory/allocator/requirements/explicit_instantiation/1.cc | |
4875 | * 20_util/memory/auto_ptr | |
4876 | * 20_util/memory/auto_ptr/1.cc | |
4877 | * 20_util/memory/auto_ptr/2.cc | |
4878 | * 20_util/memory/auto_ptr/3946.cc | |
4879 | * 20_util/memory/auto_ptr/3.cc | |
4880 | * 20_util/memory/auto_ptr/4.cc | |
4881 | * 20_util/memory/auto_ptr/5.cc | |
4882 | * 20_util/memory/auto_ptr/6.cc | |
4883 | * 20_util/memory/auto_ptr/7.cc | |
4884 | * 20_util/memory/auto_ptr/assign_neg.cc | |
4885 | * 20_util/memory/auto_ptr/requirements | |
4886 | * 20_util/memory/auto_ptr/requirements/explicit_instantiation | |
4887 | * 20_util/memory/auto_ptr/requirements/explicit_instantiation/1.cc | |
4888 | * 20_util/memory/raw_storage_iterator | |
4889 | * 20_util/memory/raw_storage_iterator/requirements | |
4890 | * 20_util/memory/raw_storage_iterator/requirements/base_classes.cc | |
4891 | * 20_util/memory/raw_storage_iterator/requirements/ | |
4892 | explicit_instantiation | |
4893 | * 20_util/memory/raw_storage_iterator/requirements/ | |
4894 | explicit_instantiation/1.cc | |
4895 | * 20_util/memory/raw_storage_iterator/requirements/typedefs.cc | |
4896 | * 20_util/memory/temporary_buffer.cc | |
4897 | * 20_util/utility | |
4898 | * 20_util/utility/pair | |
4899 | * 20_util/utility/pair/1.cc | |
4900 | * 20_util/utility/pair/2.cc | |
4901 | * 20_util/utility/pair/3.cc | |
4902 | * 20_util/utility/pair/4.cc | |
4903 | * 20_util/utility/pair/requirements | |
4904 | * 20_util/utility/pair/requirements/explicit_instantiation | |
4905 | * 20_util/utility/pair/requirements/explicit_instantiation/1.cc | |
4906 | * 20_util/utility/rel_ops.cc | |
4907 | * 26_numerics/numeric_arrays/27867.cc | |
4908 | * 26_numerics/numeric_arrays/28277.cc | |
4909 | * 26_numerics/numeric_arrays/30416.cc | |
4910 | * 26_numerics/numeric_arrays/binary_closure.cc | |
4911 | * 26_numerics/numeric_arrays/dr543.cc | |
4912 | * 26_numerics/numeric_arrays/slice_array_assignment.cc | |
4913 | * 26_numerics/numeric_arrays/valarray.cc | |
4914 | * 26_numerics/numeric_arrays/valarray_const_bracket.cc | |
4915 | * 26_numerics/numeric_arrays/valarray_name_lookup.cc | |
4916 | * 26_numerics/numeric_arrays/valarray_operators.cc | |
4917 | * 26_numerics/numeric_arrays/valarray_subset_assignment.cc | |
4918 | * tr1/2_general_utilities/memory | |
4919 | * tr1/2_general_utilities/memory/enable_shared_from_this | |
4920 | * tr1/2_general_utilities/memory/enable_shared_from_this/1.cc | |
4921 | * tr1/2_general_utilities/memory/enable_shared_from_this/not_shared2.cc | |
4922 | * tr1/2_general_utilities/memory/enable_shared_from_this/not_shared3.cc | |
4923 | * tr1/2_general_utilities/memory/enable_shared_from_this/not_shared.cc | |
4924 | * tr1/2_general_utilities/memory/enable_shared_from_this/requirements | |
4925 | * tr1/2_general_utilities/memory/enable_shared_from_this/ | |
4926 | requirements/explicit_instantiation | |
4927 | * tr1/2_general_utilities/memory/enable_shared_from_this/ | |
4928 | requirements/explicit_instantiation/1.cc | |
4929 | * tr1/2_general_utilities/memory/enable_shared_from_this/shared.cc | |
4930 | * tr1/2_general_utilities/memory/enable_shared_from_this/ | |
4931 | still_shared.cc | |
4932 | * tr1/2_general_utilities/memory/shared_ptr | |
4933 | * tr1/2_general_utilities/memory/shared_ptr/assign | |
4934 | * tr1/2_general_utilities/memory/shared_ptr/assign/assign.cc | |
4935 | * tr1/2_general_utilities/memory/shared_ptr/assign/auto_ptr.cc | |
4936 | * tr1/2_general_utilities/memory/shared_ptr/assign/auto_ptr_neg.cc | |
4937 | * tr1/2_general_utilities/memory/shared_ptr/assign/ | |
4938 | auto_ptr_rvalue_neg.cc | |
4939 | * tr1/2_general_utilities/memory/shared_ptr/assign/dr541.cc | |
4940 | * tr1/2_general_utilities/memory/shared_ptr/assign/shared_ptr.cc | |
4941 | * tr1/2_general_utilities/memory/shared_ptr/assign/shared_ptr_neg.cc | |
4942 | * tr1/2_general_utilities/memory/shared_ptr/casts | |
4943 | * tr1/2_general_utilities/memory/shared_ptr/casts/1.cc | |
4944 | * tr1/2_general_utilities/memory/shared_ptr/comparison | |
4945 | * tr1/2_general_utilities/memory/shared_ptr/comparison/cmp.cc | |
4946 | * tr1/2_general_utilities/memory/shared_ptr/cons | |
4947 | * tr1/2_general_utilities/memory/shared_ptr/cons/auto_ptr.cc | |
4948 | * tr1/2_general_utilities/memory/shared_ptr/cons/auto_ptr_neg.cc | |
4949 | * tr1/2_general_utilities/memory/shared_ptr/cons/copy.cc | |
4950 | * tr1/2_general_utilities/memory/shared_ptr/cons/default.cc | |
4951 | * tr1/2_general_utilities/memory/shared_ptr/cons/pointer.cc | |
4952 | * tr1/2_general_utilities/memory/shared_ptr/cons/weak_ptr.cc | |
4953 | * tr1/2_general_utilities/memory/shared_ptr/cons/weak_ptr_expired.cc | |
4954 | * tr1/2_general_utilities/memory/shared_ptr/dest | |
4955 | * tr1/2_general_utilities/memory/shared_ptr/dest/dest.cc | |
4956 | * tr1/2_general_utilities/memory/shared_ptr/misc | |
4957 | * tr1/2_general_utilities/memory/shared_ptr/misc/24595.cc | |
4958 | * tr1/2_general_utilities/memory/shared_ptr/misc/io.cc | |
4959 | * tr1/2_general_utilities/memory/shared_ptr/misc/swap.cc | |
4960 | * tr1/2_general_utilities/memory/shared_ptr/modifiers | |
4961 | * tr1/2_general_utilities/memory/shared_ptr/modifiers/24805.cc | |
4962 | * tr1/2_general_utilities/memory/shared_ptr/modifiers/reset.cc | |
4963 | * tr1/2_general_utilities/memory/shared_ptr/modifiers/reset_neg.cc | |
4964 | * tr1/2_general_utilities/memory/shared_ptr/modifiers/swap.cc | |
4965 | * tr1/2_general_utilities/memory/shared_ptr/modifiers/swap_neg.cc | |
4966 | * tr1/2_general_utilities/memory/shared_ptr/observers | |
4967 | * tr1/2_general_utilities/memory/shared_ptr/observers/bool_conv.cc | |
4968 | * tr1/2_general_utilities/memory/shared_ptr/observers/get.cc | |
4969 | * tr1/2_general_utilities/memory/shared_ptr/observers/unique.cc | |
4970 | * tr1/2_general_utilities/memory/shared_ptr/observers/use_count.cc | |
4971 | * tr1/2_general_utilities/memory/shared_ptr/requirements | |
4972 | * tr1/2_general_utilities/memory/shared_ptr/requirements/ | |
4973 | explicit_instantiation | |
4974 | * tr1/2_general_utilities/memory/shared_ptr/requirements/ | |
4975 | explicit_instantiation/1.cc | |
4976 | * tr1/2_general_utilities/memory/shared_ptr/thread | |
4977 | * tr1/2_general_utilities/memory/shared_ptr/thread/ | |
4978 | default_weaktoshared.cc | |
4979 | * tr1/2_general_utilities/memory/shared_ptr/thread/ | |
4980 | mutex_weaktoshared.cc | |
4981 | * tr1/2_general_utilities/memory/weak_ptr | |
4982 | * tr1/2_general_utilities/memory/weak_ptr/lock | |
4983 | * tr1/2_general_utilities/memory/weak_ptr/lock/1.cc | |
4984 | * tr1/2_general_utilities/memory/weak_ptr/requirements | |
4985 | * tr1/2_general_utilities/memory/weak_ptr/requirements/ | |
4986 | explicit_instantiation | |
4987 | * tr1/2_general_utilities/memory/weak_ptr/requirements/ | |
4988 | explicit_instantiation/1.cc | |
4989 | ||
a024740d BK |
4990 | 2007-02-20 Benjamin Kosnik <bkoz@redhat.com> |
4991 | ||
4992 | Revamp library API testing. | |
f05e2819 BK |
4993 | |
4994 | Added in testsuite: | |
a024740d BK |
4995 | * 17_intro/headers |
4996 | * 17_intro/headers/all_assert_neg.cc | |
4997 | * 17_intro/headers/all_c++200x_compatibility.cc | |
4998 | * 17_intro/headers/all.cc | |
4999 | * 17_intro/headers/c++1998 | |
5000 | * 17_intro/headers/c++1998/all.cc | |
5001 | * 17_intro/headers/c++1998/all_multiple_inclusion.cc | |
5002 | * 17_intro/headers/c++1998/c++_for_c.tar | |
5003 | * 17_intro/headers/c++1998/c++.tar | |
5004 | * 17_intro/using_namespace_std.cc | |
5005 | * 18_support/headers | |
5006 | * 18_support/headers/cfloat | |
5007 | * 18_support/headers/cfloat/values.cc | |
5008 | * 18_support/headers/climits | |
5009 | * 18_support/headers/climits/values.cc | |
5010 | * 18_support/headers/csetjmp | |
5011 | * 18_support/headers/csetjmp/functions_std.cc | |
5012 | * 18_support/headers/csetjmp/macros.cc | |
5013 | * 18_support/headers/csetjmp/types_std.cc | |
5014 | * 18_support/headers/csignal | |
5015 | * 18_support/headers/csignal/functions_std.cc | |
5016 | * 18_support/headers/csignal/macros.cc | |
5017 | * 18_support/headers/csignal/types_std.cc | |
5018 | * 18_support/headers/cstdarg | |
5019 | * 18_support/headers/cstdarg/macros.cc | |
5020 | * 18_support/headers/cstdarg/types_std.cc | |
5021 | * 18_support/headers/cstddef | |
5022 | * 18_support/headers/cstddef/macros.cc | |
5023 | * 18_support/headers/cstddef/types_std.cc | |
5024 | * 18_support/headers/cstdlib | |
5025 | * 18_support/headers/cstdlib/functions_std.cc | |
5026 | * 18_support/headers/cstdlib/macros.cc | |
5027 | * 18_support/headers/ctime | |
5028 | * 18_support/headers/ctime/functions_std.cc | |
5029 | * 18_support/headers/ctime/macros.cc | |
5030 | * 18_support/headers/ctime/types_std.cc | |
5031 | * 18_support/headers/exception | |
5032 | * 18_support/headers/exception/synopsis.cc | |
5033 | * 18_support/headers/exception/types_std.cc | |
5034 | * 18_support/headers/limits | |
5035 | * 18_support/headers/limits/synopsis.cc | |
5036 | * 18_support/headers/new | |
5037 | * 18_support/headers/new/synopsis.cc | |
5038 | * 18_support/headers/new/types_std.cc | |
5039 | * 18_support/headers/typeinfo | |
5040 | * 18_support/headers/typeinfo/synopsis.cc | |
5041 | * 18_support/headers/typeinfo/types_std.cc | |
5042 | * 18_support/numeric_limits/is_signed.cc | |
5043 | * 18_support/numeric_limits/requirements | |
5044 | * 18_support/numeric_limits/requirements/explicit_instantiation | |
5045 | * 18_support/numeric_limits/requirements/explicit_instantiation/1.cc | |
5046 | * 18_support/numeric_limits/specialization_default_values.cc | |
5047 | * 19_diagnostics/headers | |
5048 | * 19_diagnostics/headers/cassert | |
5049 | * 19_diagnostics/headers/cassert/macros.cc | |
5050 | * 19_diagnostics/headers/cerrno | |
5051 | * 19_diagnostics/headers/cerrno/macros.cc | |
5052 | * 19_diagnostics/headers/stdexcept | |
5053 | * 19_diagnostics/headers/stdexcept/synopsis.cc | |
5054 | * 19_diagnostics/headers/stdexcept/types_std.cc | |
5055 | * 20_util/headers | |
5056 | * 20_util/headers/cstdlib | |
5057 | * 20_util/headers/cstdlib/functions_std.cc | |
5058 | * 20_util/headers/cstring | |
5059 | * 20_util/headers/cstring/functions_std.cc | |
5060 | * 20_util/headers/cstring/macros.cc | |
5061 | * 20_util/headers/cstring/types_std.cc | |
5062 | * 20_util/headers/ctime | |
5063 | * 20_util/headers/ctime/functions_std.cc | |
5064 | * 20_util/headers/ctime/macros.cc | |
5065 | * 20_util/headers/ctime/types_std.cc | |
5066 | * 20_util/headers/functional | |
5067 | * 20_util/headers/functional/synopsis.cc | |
5068 | * 20_util/headers/memory | |
5069 | * 20_util/headers/memory/synopsis.cc | |
5070 | * 20_util/headers/utility | |
5071 | * 20_util/headers/utility/synopsis.cc | |
5072 | * 20_util/headers/utility/using_namespace_std_rel_ops.cc | |
5073 | * 20_util/memory/allocator/requirements | |
5074 | * 20_util/memory/allocator/requirements/explicit_instantiation | |
5075 | * 20_util/memory/allocator/requirements/explicit_instantiation/1.cc | |
5076 | * 20_util/memory/auto_ptr/requirements | |
5077 | * 20_util/memory/auto_ptr/requirements/explicit_instantiation | |
5078 | * 20_util/memory/auto_ptr/requirements/explicit_instantiation/1.cc | |
5079 | * 20_util/memory/raw_storage_iterator | |
5080 | * 20_util/memory/raw_storage_iterator/requirements | |
5081 | * 20_util/memory/raw_storage_iterator/requirements/base_classes.cc | |
5082 | * 20_util/memory/raw_storage_iterator/requirements/ | |
5083 | explicit_instantiation | |
5084 | * 20_util/memory/raw_storage_iterator/requirements/ | |
5085 | explicit_instantiation/1.cc | |
5086 | * 20_util/memory/raw_storage_iterator/requirements/typedefs.cc | |
5087 | * 20_util/utility/pair/requirements | |
5088 | * 20_util/utility/pair/requirements/explicit_instantiation | |
5089 | * 20_util/utility/pair/requirements/explicit_instantiation/1.cc | |
5090 | * 21_strings/basic_string/requirements | |
5091 | * 21_strings/basic_string/requirements/explicit_instantiation | |
5092 | * 21_strings/basic_string/requirements/explicit_instantiation/1.cc | |
5093 | * 21_strings/basic_string/requirements/explicit_instantiation/debug.cc | |
5094 | * 21_strings/headers | |
5095 | * 21_strings/headers/cctype | |
5096 | * 21_strings/headers/cctype/functions_std.cc | |
5097 | * 21_strings/headers/cstdlib | |
5098 | * 21_strings/headers/cstdlib/functions_std.cc | |
5099 | * 21_strings/headers/cstdlib/macros.cc | |
5100 | * 21_strings/headers/cstring | |
5101 | * 21_strings/headers/cstring/functions_std.cc | |
5102 | * 21_strings/headers/cstring/macros.cc | |
5103 | * 21_strings/headers/cstring/types_std.cc | |
5104 | * 21_strings/headers/cwchar | |
5105 | * 21_strings/headers/cwchar/functions_std.cc | |
5106 | * 21_strings/headers/cwchar/macros.cc | |
5107 | * 21_strings/headers/cwchar/types_std.cc | |
5108 | * 21_strings/headers/cwctype | |
5109 | * 21_strings/headers/cwctype/functions_std.cc | |
5110 | * 21_strings/headers/cwctype/macros.cc | |
5111 | * 21_strings/headers/cwctype/types_std.cc | |
5112 | * 21_strings/headers/string | |
5113 | * 21_strings/headers/string/synopsis.cc | |
5114 | * 21_strings/headers/string/types_std.cc | |
5115 | * 22_locale/codecvt_byname/requirements | |
5116 | * 22_locale/codecvt_byname/requirements/base_classes.cc | |
5117 | * 22_locale/codecvt_byname/requirements/explicit_instantiation.cc | |
5118 | * 22_locale/codecvt_byname/requirements/typedefs.cc | |
5119 | * 22_locale/codecvt/requirements | |
5120 | * 22_locale/codecvt/requirements/base_classes.cc | |
5121 | * 22_locale/codecvt/requirements/explicit_instantiation.cc | |
5122 | * 22_locale/codecvt/requirements/typedefs.cc | |
5123 | * 22_locale/collate_byname/requirements | |
5124 | * 22_locale/collate_byname/requirements/base_classes.cc | |
5125 | * 22_locale/collate_byname/requirements/explicit_instantiation.cc | |
5126 | * 22_locale/collate_byname/requirements/typedefs.cc | |
5127 | * 22_locale/collate/requirements | |
5128 | * 22_locale/collate/requirements/base_classes.cc | |
5129 | * 22_locale/collate/requirements/explicit_instantiation.cc | |
5130 | * 22_locale/collate/requirements/typedefs.cc | |
5131 | * 22_locale/ctype_base/mask.cc | |
5132 | * 22_locale/ctype/requirements | |
5133 | * 22_locale/ctype/requirements/base_classes.cc | |
5134 | * 22_locale/ctype/requirements/explicit_instantiation.cc | |
5135 | * 22_locale/ctype/requirements/typedefs.cc | |
5136 | * 22_locale/headers | |
5137 | * 22_locale/headers/clocale | |
5138 | * 22_locale/headers/clocale/functions_std.cc | |
5139 | * 22_locale/headers/clocale/macros.cc | |
5140 | * 22_locale/headers/clocale/types_std.cc | |
5141 | * 22_locale/headers/locale | |
5142 | * 22_locale/headers/locale/synopsis.cc | |
5143 | * 22_locale/headers/locale/types_std.cc | |
5144 | * 22_locale/messages_byname/requirements | |
5145 | * 22_locale/messages_byname/requirements/base_classes.cc | |
5146 | * 22_locale/messages_byname/requirements/explicit_instantiation.cc | |
5147 | * 22_locale/messages_byname/requirements/typedefs.cc | |
5148 | * 22_locale/messages/requirements | |
5149 | * 22_locale/messages/requirements/base_classes.cc | |
5150 | * 22_locale/messages/requirements/explicit_instantiation.cc | |
5151 | * 22_locale/messages/requirements/typedefs.cc | |
5152 | * 22_locale/money_get/cons | |
5153 | * 22_locale/money_get/cons/3.cc | |
5154 | * 22_locale/money_get/requirements | |
5155 | * 22_locale/money_get/requirements/base_classes.cc | |
5156 | * 22_locale/money_get/requirements/explicit_instantiations.cc | |
5157 | * 22_locale/money_get/requirements/typedefs.cc | |
5158 | * 22_locale/moneypunct_byname/requirements | |
5159 | * 22_locale/moneypunct_byname/requirements/base_classes.cc | |
5160 | * 22_locale/moneypunct_byname/requirements/explicit_instantiation.cc | |
5161 | * 22_locale/moneypunct_byname/requirements/typedefs.cc | |
5162 | * 22_locale/moneypunct/requirements | |
5163 | * 22_locale/moneypunct/requirements/false | |
5164 | * 22_locale/moneypunct/requirements/false/base_classes.cc | |
5165 | * 22_locale/moneypunct/requirements/false/explicit_instantiation.cc | |
5166 | * 22_locale/moneypunct/requirements/false/intl.cc | |
5167 | * 22_locale/moneypunct/requirements/false/typedefs.cc | |
5168 | * 22_locale/moneypunct/requirements/true | |
5169 | * 22_locale/moneypunct/requirements/true/base_classes.cc | |
5170 | * 22_locale/moneypunct/requirements/true/explicit_instantiation.cc | |
5171 | * 22_locale/moneypunct/requirements/true/intl.cc | |
5172 | * 22_locale/moneypunct/requirements/true/typedefs.cc | |
5173 | * 22_locale/money_put/cons | |
5174 | * 22_locale/money_put/cons/3.cc | |
5175 | * 22_locale/money_put/requirements | |
5176 | * 22_locale/money_put/requirements/base_classes.cc | |
5177 | * 22_locale/money_put/requirements/explicit_instantiation.cc | |
5178 | * 22_locale/money_put/requirements/typedefs.cc | |
5179 | * 22_locale/num_get/cons | |
5180 | * 22_locale/num_get/cons/3.cc | |
5181 | * 22_locale/num_get/requirements | |
5182 | * 22_locale/num_get/requirements/base_classes.cc | |
5183 | * 22_locale/num_get/requirements/explicit_instantiation.cc | |
5184 | * 22_locale/num_get/requirements/typedefs.cc | |
5185 | * 22_locale/numpunct_byname/requirements | |
5186 | * 22_locale/numpunct_byname/requirements/base_classes.cc | |
5187 | * 22_locale/numpunct_byname/requirements/explicit_instantiations.cc | |
5188 | * 22_locale/numpunct_byname/requirements/typedefs.cc | |
5189 | * 22_locale/numpunct/requirements | |
5190 | * 22_locale/numpunct/requirements/base_classes.cc | |
5191 | * 22_locale/numpunct/requirements/explicit_instantiations.cc | |
5192 | * 22_locale/numpunct/requirements/typedefs.cc | |
5193 | * 22_locale/num_put/cons | |
5194 | * 22_locale/num_put/cons/3.cc | |
5195 | * 22_locale/num_put/requirements | |
5196 | * 22_locale/num_put/requirements/base_classes.cc | |
5197 | * 22_locale/num_put/requirements/explicit_instantiations.cc | |
5198 | * 22_locale/num_put/requirements/typedefs.cc | |
5199 | * 22_locale/time_get/requirements | |
5200 | * 22_locale/time_get/requirements/base_classes.cc | |
5201 | * 22_locale/time_get/requirements/explicit_instantiations.cc | |
5202 | * 22_locale/time_get/requirements/typedefs.cc | |
5203 | * 22_locale/time_put/requirements | |
5204 | * 22_locale/time_put/requirements/base_classes.cc | |
5205 | * 22_locale/time_put/requirements/explicit_instantiations.cc | |
5206 | * 22_locale/time_put/requirements/typedefs.cc | |
5207 | * 23_containers/bitset/requirements | |
5208 | * 23_containers/bitset/requirements/explicit_instantiation | |
5209 | * 23_containers/bitset/requirements/explicit_instantiation/1.cc | |
5210 | * 23_containers/deque/requirements | |
5211 | * 23_containers/deque/requirements/explicit_instantiation | |
5212 | * 23_containers/deque/requirements/partial_specialization | |
5213 | * 23_containers/deque/requirements/partial_specialization/1.cc | |
5214 | * 23_containers/headers | |
5215 | * 23_containers/headers/bitset | |
5216 | * 23_containers/headers/bitset/synopsis.cc | |
5217 | * 23_containers/headers/deque | |
5218 | * 23_containers/headers/deque/synopsis.cc | |
5219 | * 23_containers/headers/list | |
5220 | * 23_containers/headers/list/synopsis.cc | |
5221 | * 23_containers/headers/map | |
5222 | * 23_containers/headers/map/synopsis.cc | |
5223 | * 23_containers/headers/queue | |
5224 | * 23_containers/headers/queue/synopsis.cc | |
5225 | * 23_containers/headers/set | |
5226 | * 23_containers/headers/set/synopsis.cc | |
5227 | * 23_containers/headers/stack | |
5228 | * 23_containers/headers/stack/synopsis.cc | |
5229 | * 23_containers/headers/vector | |
5230 | * 23_containers/headers/vector/synopsis.cc | |
5231 | * 23_containers/list/requirements | |
5232 | * 23_containers/list/requirements/explicit_instantiation | |
5233 | * 23_containers/list/requirements/partial_specialization | |
5234 | * 23_containers/list/requirements/partial_specialization/1.cc | |
5235 | * 23_containers/map/requirements | |
5236 | * 23_containers/map/requirements/explicit_instantiation | |
5237 | * 23_containers/map/requirements/partial_specialization | |
5238 | * 23_containers/map/requirements/partial_specialization/1.cc | |
5239 | * 23_containers/multimap/requirements | |
5240 | * 23_containers/multimap/requirements/explicit_instantiation | |
5241 | * 23_containers/multimap/requirements/partial_specialization | |
5242 | * 23_containers/multimap/requirements/partial_specialization/1.cc | |
5243 | * 23_containers/multiset/requirements | |
5244 | * 23_containers/multiset/requirements/explicit_instantiation | |
5245 | * 23_containers/multiset/requirements/partial_specialization | |
5246 | * 23_containers/multiset/requirements/partial_specialization/1.cc | |
5247 | * 23_containers/priority_queue/requirements | |
5248 | * 23_containers/priority_queue/requirements/explicit_instantiation | |
5249 | * 23_containers/priority_queue/requirements/explicit_instantiation/1.cc | |
5250 | * 23_containers/queue/requirements | |
5251 | * 23_containers/queue/requirements/explicit_instantiation | |
5252 | * 23_containers/queue/requirements/explicit_instantiation/1.cc | |
5253 | * 23_containers/set/requirements | |
5254 | * 23_containers/set/requirements/explicit_instantiation | |
5255 | * 23_containers/set/requirements/partial_specialization | |
5256 | * 23_containers/set/requirements/partial_specialization/1.cc | |
5257 | * 23_containers/stack/requirements | |
5258 | * 23_containers/stack/requirements/explicit_instantiation | |
5259 | * 23_containers/stack/requirements/explicit_instantiation/1.cc | |
5260 | * 23_containers/vector/requirements | |
5261 | * 23_containers/vector/requirements/explicit_instantiation | |
5262 | * 23_containers/vector/requirements/partial_specialization | |
5263 | * 23_containers/vector/requirements/partial_specialization/1.cc | |
5264 | * 24_iterators/back_insert_iterator | |
5265 | * 24_iterators/back_insert_iterator/2.cc | |
5266 | * 24_iterators/back_insert_iterator/requirements | |
5267 | * 24_iterators/back_insert_iterator/requirements/base_classes.cc | |
5268 | * 24_iterators/back_insert_iterator/requirements/container.cc | |
5269 | * 24_iterators/back_insert_iterator/requirements/ | |
5270 | explicit_instantiation.cc | |
5271 | * 24_iterators/back_insert_iterator/requirements/typedefs.cc | |
5272 | * 24_iterators/front_insert_iterator | |
5273 | * 24_iterators/front_insert_iterator/2.cc | |
5274 | * 24_iterators/front_insert_iterator/requirements | |
5275 | * 24_iterators/front_insert_iterator/requirements/base_classes.cc | |
5276 | * 24_iterators/front_insert_iterator/requirements/container.cc | |
5277 | * 24_iterators/front_insert_iterator/requirements/ | |
5278 | explicit_instantiation.cc | |
5279 | * 24_iterators/front_insert_iterator/requirements/typedefs.cc | |
5280 | * 24_iterators/headers | |
5281 | * 24_iterators/headers/iterator | |
5282 | * 24_iterators/headers/iterator/synopsis.cc | |
5283 | * 24_iterators/headers/iterator/types_std.cc | |
5284 | * 24_iterators/insert_iterator | |
5285 | * 24_iterators/insert_iterator/2.cc | |
5286 | * 24_iterators/insert_iterator/requirements | |
5287 | * 24_iterators/insert_iterator/requirements/base_classes.cc | |
5288 | * 24_iterators/insert_iterator/requirements/container.cc | |
5289 | * 24_iterators/insert_iterator/requirements/explicit_instantiation.cc | |
5290 | * 24_iterators/insert_iterator/requirements/typedefs.cc | |
5291 | * 24_iterators/istreambuf_iterator/requirements | |
5292 | * 24_iterators/istreambuf_iterator/requirements/base_classes.cc | |
5293 | * 24_iterators/istreambuf_iterator/requirements/ | |
5294 | explicit_instantiation.cc | |
5295 | * 24_iterators/istreambuf_iterator/requirements/typedefs.cc | |
5296 | * 24_iterators/istream_iterator | |
5297 | * 24_iterators/istream_iterator/2.cc | |
5298 | * 24_iterators/istream_iterator/requirements | |
5299 | * 24_iterators/istream_iterator/requirements/base_classes.cc | |
5300 | * 24_iterators/istream_iterator/requirements/explicit_instantiation.cc | |
5301 | * 24_iterators/istream_iterator/requirements/typedefs.cc | |
5302 | * 24_iterators/ostreambuf_iterator/requirements | |
5303 | * 24_iterators/ostreambuf_iterator/requirements/base_classes.cc | |
5304 | * 24_iterators/ostreambuf_iterator/requirements/ | |
5305 | explicit_instantiation.cc | |
5306 | * 24_iterators/ostreambuf_iterator/requirements/typedefs.cc | |
5307 | * 24_iterators/ostream_iterator | |
5308 | * 24_iterators/ostream_iterator/requirements | |
5309 | * 24_iterators/ostream_iterator/requirements/base_classes.cc | |
5310 | * 24_iterators/ostream_iterator/requirements/explicit_instantiation.cc | |
5311 | * 24_iterators/ostream_iterator/requirements/typedefs.cc | |
5312 | * 24_iterators/random_access_iterator | |
5313 | * 24_iterators/random_access_iterator/26020.cc | |
5314 | * 24_iterators/random_access_iterator/string_vector_iterators.cc | |
5315 | * 24_iterators/reverse_iterator/requirements | |
5316 | * 24_iterators/reverse_iterator/requirements/base_classes.cc | |
5317 | * 24_iterators/reverse_iterator/requirements/current.cc | |
5318 | * 24_iterators/reverse_iterator/requirements/explicit_instantiation.cc | |
5319 | * 24_iterators/reverse_iterator/requirements/typedefs.cc | |
5320 | * 25_algorithms/headers | |
5321 | * 25_algorithms/headers/algorithm | |
5322 | * 25_algorithms/headers/algorithm/synopsis.cc | |
5323 | * 25_algorithms/headers/cstdlib | |
5324 | * 25_algorithms/headers/cstdlib/functions_std.cc | |
5325 | * 26_numerics/headers | |
5326 | * 26_numerics/headers/cmath | |
5327 | * 26_numerics/headers/cmath/19322.cc | |
5328 | * 26_numerics/headers/cmath/c99_classification_macros_c.cc | |
5329 | * 26_numerics/headers/cmath/c99_classification_macros_c++.cc | |
5330 | * 26_numerics/headers/cmath/c_math.cc | |
5331 | * 26_numerics/headers/cmath/c_math_dynamic.cc | |
5332 | * 26_numerics/headers/cmath/fabs_inline.cc | |
5333 | * 26_numerics/headers/cmath/functions_std.cc | |
5334 | * 26_numerics/headers/cmath/macros.cc | |
5335 | * 26_numerics/headers/cmath/overloads.cc | |
5336 | * 26_numerics/headers/cmath/powi.cc | |
5337 | * 26_numerics/headers/complex | |
5338 | * 26_numerics/headers/complex/synopsis.cc | |
5339 | * 26_numerics/headers/cstdlib | |
5340 | * 26_numerics/headers/cstdlib/13943.cc | |
5341 | * 26_numerics/headers/cstdlib/2190.cc | |
5342 | * 26_numerics/headers/cstdlib/functions_std.cc | |
5343 | * 26_numerics/headers/cstdlib/macros.cc | |
5344 | * 26_numerics/headers/cstdlib/types_std.cc | |
5345 | * 26_numerics/headers/numeric | |
5346 | * 26_numerics/headers/numeric/synopsis.cc | |
5347 | * 26_numerics/headers/valarray | |
5348 | * 26_numerics/headers/valarray/synopsis.cc | |
5349 | * 26_numerics/headers/valarray/types_std.cc | |
5350 | * 26_numerics/numeric_arrays | |
5351 | * 26_numerics/numeric_operations | |
5352 | * 27_io/basic_filebuf/cons/2020.cc | |
5353 | * 27_io/basic_filebuf/requirements | |
5354 | * 27_io/basic_filebuf/requirements/base_classes.cc | |
5355 | * 27_io/basic_filebuf/requirements/explicit_instantiation.cc | |
5356 | * 27_io/basic_filebuf/requirements/typedefs.cc | |
5357 | * 27_io/basic_fstream/cons | |
5358 | * 27_io/basic_fstream/cons/3.cc | |
5359 | * 27_io/basic_fstream/requirements | |
5360 | * 27_io/basic_fstream/requirements/base_classes.cc | |
5361 | * 27_io/basic_fstream/requirements/explicit_instantiation.cc | |
5362 | * 27_io/basic_fstream/requirements/typedefs.cc | |
5363 | * 27_io/basic_ifstream/cons/2020.cc | |
5364 | * 27_io/basic_ifstream/requirements | |
5365 | * 27_io/basic_ifstream/requirements/base_classes.cc | |
5366 | * 27_io/basic_ifstream/requirements/explicit_instantiation.cc | |
5367 | * 27_io/basic_ifstream/requirements/typedefs.cc | |
5368 | * 27_io/basic_ios/cons/2020.cc | |
5369 | * 27_io/basic_ios/requirements | |
5370 | * 27_io/basic_ios/requirements/base_classes.cc | |
5371 | * 27_io/basic_ios/requirements/explicit_instantiation.cc | |
5372 | * 27_io/basic_ios/requirements/typedefs.cc | |
5373 | * 27_io/basic_iostream/cons | |
5374 | * 27_io/basic_iostream/cons/2020.cc | |
5375 | * 27_io/basic_iostream/requirements | |
5376 | * 27_io/basic_iostream/requirements/base_classes.cc | |
5377 | * 27_io/basic_iostream/requirements/explicit_instantiation.cc | |
5378 | * 27_io/basic_iostream/requirements/typedefs.cc | |
5379 | * 27_io/basic_istream/cons | |
5380 | * 27_io/basic_istream/cons/3.cc | |
5381 | * 27_io/basic_istream/requirements | |
5382 | * 27_io/basic_istream/requirements/base_classes.cc | |
5383 | * 27_io/basic_istream/requirements/explicit_instantiation.cc | |
5384 | * 27_io/basic_istream/requirements/typedefs.cc | |
5385 | * 27_io/basic_istringstream/cons | |
5386 | * 27_io/basic_istringstream/cons/2020.cc | |
5387 | * 27_io/basic_istringstream/requirements | |
5388 | * 27_io/basic_istringstream/requirements/base_classes.cc | |
5389 | * 27_io/basic_istringstream/requirements/explicit_instantiation.cc | |
5390 | * 27_io/basic_istringstream/requirements/typedefs.cc | |
5391 | * 27_io/basic_ofstream/cons/2020.cc | |
5392 | * 27_io/basic_ofstream/requirements | |
5393 | * 27_io/basic_ofstream/requirements/base_classes.cc | |
5394 | * 27_io/basic_ofstream/requirements/explicit_instantiations.cc | |
5395 | * 27_io/basic_ofstream/requirements/typedefs.cc | |
5396 | * 27_io/basic_ostream/cons/2020.cc | |
5397 | * 27_io/basic_ostream/requirements | |
5398 | * 27_io/basic_ostream/requirements/base_classes.cc | |
5399 | * 27_io/basic_ostream/requirements/explicit_instantiation.cc | |
5400 | * 27_io/basic_ostream/requirements/typedefs.cc | |
5401 | * 27_io/basic_ostringstream/cons/2020.cc | |
5402 | * 27_io/basic_ostringstream/requirements | |
5403 | * 27_io/basic_ostringstream/requirements/base_classes.cc | |
5404 | * 27_io/basic_ostringstream/requirements/explicit_instantiation.cc | |
5405 | * 27_io/basic_ostringstream/requirements/typedefs.cc | |
5406 | * 27_io/basic_streambuf/cons/2020.cc | |
5407 | * 27_io/basic_streambuf/requirements | |
5408 | * 27_io/basic_streambuf/requirements/base_classes.cc | |
5409 | * 27_io/basic_streambuf/requirements/typedefs.cc | |
5410 | * 27_io/basic_stringbuf/cons/2020.cc | |
5411 | * 27_io/basic_stringbuf/requirements | |
5412 | * 27_io/basic_stringbuf/requirements/base_classes.cc | |
5413 | * 27_io/basic_stringbuf/requirements/explicit_instantiation | |
5414 | * 27_io/basic_stringbuf/requirements/explicit_instantiation/2.cc | |
5415 | * 27_io/basic_stringbuf/requirements/explicit_instantiation/4.cc | |
5416 | * 27_io/basic_stringbuf/requirements/typedefs.cc | |
5417 | * 27_io/basic_stringstream/cons | |
5418 | * 27_io/basic_stringstream/cons/2020.cc | |
5419 | * 27_io/basic_stringstream/requirements | |
5420 | * 27_io/basic_stringstream/requirements/base_classes.cc | |
5421 | * 27_io/basic_stringstream/requirements/explicit_instantiation.cc | |
5422 | * 27_io/basic_stringstream/requirements/typedefs.cc | |
5423 | * 27_io/fpos/requirements | |
5424 | * 27_io/fpos/requirements/explicit_instantiation.cc | |
5425 | * 27_io/headers | |
5426 | * 27_io/headers/cstdio | |
5427 | * 27_io/headers/cstdio/functions_std.cc | |
5428 | * 27_io/headers/cstdio/macros.cc | |
5429 | * 27_io/headers/cstdio/types_std.cc | |
5430 | * 27_io/headers/cstdlib | |
5431 | * 27_io/headers/fstream | |
5432 | * 27_io/headers/fstream/synopsis.cc | |
5433 | * 27_io/headers/fstream/types_std.cc | |
5434 | * 27_io/headers/iomanip | |
5435 | * 27_io/headers/iomanip/synopsis.cc | |
5436 | * 27_io/headers/ios | |
5437 | * 27_io/headers/ios/synopsis.cc | |
5438 | * 27_io/headers/iostream | |
5439 | * 27_io/headers/iostream/synopsis.cc | |
5440 | * 27_io/headers/iostream/types_std.cc | |
5441 | * 27_io/headers/ios/types_std.cc | |
5442 | * 27_io/headers/istream | |
5443 | * 27_io/headers/istream/synopsis.cc | |
5444 | * 27_io/headers/istream/types_std.cc | |
5445 | * 27_io/headers/ostream | |
5446 | * 27_io/headers/ostream/synopsis.cc | |
5447 | * 27_io/headers/ostream/types_std.cc | |
5448 | * 27_io/headers/sstream | |
5449 | * 27_io/headers/sstream/synopsis.cc | |
5450 | * 27_io/headers/sstream/types_std.cc | |
5451 | * 27_io/headers/streambuf | |
5452 | * 27_io/headers/streambuf/synopsis.cc | |
5453 | * 27_io/headers/streambuf/types_std.cc | |
5454 | * ext/debug_allocator/explicit_instantiation.cc | |
5455 | * ext/hash_map/requirements | |
5456 | * ext/hash_map/requirements/explicit_instantiation.cc | |
5457 | * ext/hash_set/requirements | |
5458 | * ext/hash_set/requirements/explicit_instantiation.cc | |
5459 | * ext/malloc_allocator/explicit_instantiation.cc | |
5460 | * ext/mt_allocator/explicit_instantiation.cc | |
5461 | * ext/pool_allocator/explicit_instantiation.cc | |
5462 | * ext/slist/requirements | |
5463 | * ext/slist/requirements/explicit_instantiation.cc | |
5464 | * ext/stdio_filebuf/requirements | |
5465 | * ext/stdio_filebuf/requirements/explicit_instantiation.cc | |
5466 | * ext/vstring/requirements | |
5467 | * ext/vstring/requirements/explicit_instantiation | |
5468 | * tr1/2_general_utilities/headers | |
5469 | * tr1/2_general_utilities/headers/functional | |
5470 | * tr1/2_general_utilities/headers/functional/synopsis.cc | |
5471 | * tr1/2_general_utilities/headers/memory | |
5472 | * tr1/2_general_utilities/headers/memory/synopsis.cc | |
5473 | * tr1/2_general_utilities/headers/memory/types_std_tr1.cc | |
5474 | * tr1/2_general_utilities/memory/enable_shared_from_this/requirements | |
5475 | * tr1/2_general_utilities/memory/enable_shared_from_this/ | |
5476 | requirements/explicit_instantiation | |
5477 | * tr1/2_general_utilities/memory/shared_ptr/requirements | |
5478 | * tr1/2_general_utilities/memory/shared_ptr/requirements/ | |
5479 | explicit_instantiation | |
5480 | * tr1/2_general_utilities/memory/weak_ptr/requirements | |
5481 | * tr1/2_general_utilities/memory/weak_ptr/requirements/ | |
5482 | explicit_instantiation | |
5483 | * tr1/3_function_objects/headers | |
5484 | * tr1/3_function_objects/headers/functional | |
5485 | * tr1/3_function_objects/headers/functional/synopsis.cc | |
5486 | * tr1/3_function_objects/headers/functional/types_std_tr1.cc | |
5487 | * tr1/3_function_objects/headers/functional/ | |
5488 | using_namespace_std_tr1_placeholders.cc | |
5489 | * tr1/4_metaprogramming/headers | |
5490 | * tr1/4_metaprogramming/headers/type_traits | |
5491 | * tr1/4_metaprogramming/headers/type_traits/synopsis.cc | |
5492 | * tr1/4_metaprogramming/headers/type_traits/types_std_tr1.cc | |
5493 | * tr1/5_numerical_facilities/headers | |
5494 | * tr1/5_numerical_facilities/headers/random | |
5495 | * tr1/5_numerical_facilities/headers/random/synopsis.cc | |
5496 | * tr1/5_numerical_facilities/headers/random/types_std_tr1.cc | |
5497 | * tr1/5_numerical_facilities/random/discard_block/ | |
5498 | requirements/typedefs.cc | |
5499 | * tr1/6_containers/array/requirements/explicit_instantiation.cc | |
5500 | * tr1/6_containers/hash | |
5501 | * tr1/6_containers/hash/requirements | |
5502 | * tr1/6_containers/hash/requirements/base_classes.cc | |
5503 | * tr1/6_containers/hash/requirements/explicit_instantiation.cc | |
5504 | * tr1/6_containers/headers | |
5505 | * tr1/6_containers/headers/array | |
5506 | * tr1/6_containers/headers/array/synopsis.cc | |
5507 | * tr1/6_containers/headers/functional | |
5508 | * tr1/6_containers/headers/functional/synopsis.cc | |
5509 | * tr1/6_containers/headers/tuple | |
5510 | * tr1/6_containers/headers/tuple/synopsis.cc | |
5511 | * tr1/6_containers/headers/tuple/types_std_tr1.cc | |
5512 | * tr1/6_containers/headers/unordered_map | |
5513 | * tr1/6_containers/headers/unordered_map/synopsis.cc | |
5514 | * tr1/6_containers/headers/unordered_set | |
5515 | * tr1/6_containers/headers/unordered_set/synopsis.cc | |
5516 | * tr1/6_containers/tuple/requirements | |
5517 | * tr1/6_containers/tuple/requirements/explicit_instantiation.cc | |
5518 | * tr1/6_containers/unordered_map | |
5519 | * tr1/6_containers/unordered_map/24064.cc | |
5520 | * tr1/6_containers/unordered_map/capacity | |
5521 | * tr1/6_containers/unordered_map/capacity/29134-map.cc | |
5522 | * tr1/6_containers/unordered_map/erase | |
5523 | * tr1/6_containers/unordered_map/erase/24061-map.cc | |
5524 | * tr1/6_containers/unordered_map/find | |
5525 | * tr1/6_containers/unordered_map/find/map1.cc | |
5526 | * tr1/6_containers/unordered_map/insert | |
5527 | * tr1/6_containers/unordered_map/insert/24061-map.cc | |
5528 | * tr1/6_containers/unordered_map/insert/array_syntax.cc | |
5529 | * tr1/6_containers/unordered_map/insert/map_range.cc | |
5530 | * tr1/6_containers/unordered_map/insert/map_single.cc | |
5531 | * tr1/6_containers/unordered_map/requirements | |
5532 | * tr1/6_containers/unordered_map/requirements/explicit_instantiation.cc | |
5533 | * tr1/6_containers/unordered_map/requirements/iterator_neg.cc | |
5534 | * tr1/6_containers/unordered_map/requirements/iterator_null_neg.cc | |
5535 | * tr1/6_containers/unordered_map/swap | |
5536 | * tr1/6_containers/unordered_map/swap/1.cc | |
5537 | * tr1/6_containers/unordered_map/swap/2.cc | |
5538 | * tr1/6_containers/unordered_multimap | |
5539 | * tr1/6_containers/unordered_multimap/capacity | |
5540 | * tr1/6_containers/unordered_multimap/capacity/29134-multimap.cc | |
5541 | * tr1/6_containers/unordered_multimap/erase | |
5542 | * tr1/6_containers/unordered_multimap/erase/24061-multimap.cc | |
5543 | * tr1/6_containers/unordered_multimap/find | |
5544 | * tr1/6_containers/unordered_multimap/find/multimap1.cc | |
5545 | * tr1/6_containers/unordered_multimap/insert | |
5546 | * tr1/6_containers/unordered_multimap/insert/24061-multimap.cc | |
5547 | * tr1/6_containers/unordered_multimap/insert/multimap_range.cc | |
5548 | * tr1/6_containers/unordered_multimap/insert/multimap_single.cc | |
5549 | * tr1/6_containers/unordered_multimap/requirements | |
5550 | * tr1/6_containers/unordered_multimap/requirements/ | |
5551 | explicit_instantiation.cc | |
5552 | * tr1/6_containers/unordered_multimap/requirements/iterator_neg.cc | |
5553 | * tr1/6_containers/unordered_multimap/requirements/iterator_null_neg.cc | |
5554 | * tr1/6_containers/unordered_multimap/swap | |
5555 | * tr1/6_containers/unordered_multimap/swap/1.cc | |
5556 | * tr1/6_containers/unordered_multimap/swap/2.cc | |
5557 | * tr1/6_containers/unordered_multiset | |
5558 | * tr1/6_containers/unordered_multiset/24054.cc | |
5559 | * tr1/6_containers/unordered_multiset/capacity | |
5560 | * tr1/6_containers/unordered_multiset/capacity/29134-multiset.cc | |
5561 | * tr1/6_containers/unordered_multiset/erase | |
5562 | * tr1/6_containers/unordered_multiset/erase/24061-multiset.cc | |
5563 | * tr1/6_containers/unordered_multiset/find | |
5564 | * tr1/6_containers/unordered_multiset/find/multiset1.cc | |
5565 | * tr1/6_containers/unordered_multiset/insert | |
5566 | * tr1/6_containers/unordered_multiset/insert/24061-multiset.cc | |
5567 | * tr1/6_containers/unordered_multiset/insert/multiset_range.cc | |
5568 | * tr1/6_containers/unordered_multiset/insert/multiset_single.cc | |
5569 | * tr1/6_containers/unordered_multiset/requirements | |
5570 | * tr1/6_containers/unordered_multiset/requirements/ | |
5571 | explicit_instantiation.cc | |
5572 | * tr1/6_containers/unordered_multiset/requirements/iterator_neg.cc | |
5573 | * tr1/6_containers/unordered_multiset/requirements/iterator_null_neg.cc | |
5574 | * tr1/6_containers/unordered_multiset/swap | |
5575 | * tr1/6_containers/unordered_multiset/swap/1.cc | |
5576 | * tr1/6_containers/unordered_multiset/swap/2.cc | |
5577 | * tr1/6_containers/unordered_set | |
5578 | * tr1/6_containers/unordered_set/23053.cc | |
5579 | * tr1/6_containers/unordered_set/23465.cc | |
5580 | * tr1/6_containers/unordered_set/26127.cc | |
5581 | * tr1/6_containers/unordered_set/26132.cc | |
5582 | * tr1/6_containers/unordered_set/capacity | |
5583 | * tr1/6_containers/unordered_set/capacity/29134-set.cc | |
5584 | * tr1/6_containers/unordered_set/erase | |
5585 | * tr1/6_containers/unordered_set/erase/24061-set.cc | |
5586 | * tr1/6_containers/unordered_set/find | |
5587 | * tr1/6_containers/unordered_set/find/set1.cc | |
5588 | * tr1/6_containers/unordered_set/insert | |
5589 | * tr1/6_containers/unordered_set/insert/24061-set.cc | |
5590 | * tr1/6_containers/unordered_set/insert/set_range.cc | |
5591 | * tr1/6_containers/unordered_set/insert/set_single.cc | |
5592 | * tr1/6_containers/unordered_set/requirements | |
5593 | * tr1/6_containers/unordered_set/requirements/explicit_instantiation.cc | |
5594 | * tr1/6_containers/unordered_set/requirements/iterator_neg.cc | |
5595 | * tr1/6_containers/unordered_set/requirements/iterator_null_neg.cc | |
5596 | * tr1/6_containers/unordered_set/requirements/ | |
5597 | iterators_default_constructor.cc | |
5598 | * tr1/6_containers/unordered_set/swap | |
5599 | * tr1/6_containers/unordered_set/swap/1.cc | |
5600 | * tr1/6_containers/unordered_set/swap/2.cc | |
5601 | * tr1/using_namespace_std_tr1.cc | |
5602 | ||
f05e2819 | 5603 | Deleted in testsuite: |
a024740d BK |
5604 | * 17_intro/header_cassert.cc |
5605 | * 17_intro/header_cerrno.cc | |
5606 | * 17_intro/header_csetjmp.cc | |
5607 | * 17_intro/header_cstdarg.cc | |
5608 | * 17_intro/header_cstddef.cc | |
5609 | * 17_intro/header_cstdio.cc | |
5610 | * 17_intro/header_cstdlib.cc | |
5611 | * 17_intro/header_cstring.cc | |
5612 | * 17_intro/header_ctime.cc | |
5613 | * 17_intro/header_cwchar.cc | |
5614 | * 17_intro/header_cwctype.cc | |
5615 | * 17_intro/header_fstream.cc | |
5616 | * 17_intro/header_iomanip.cc | |
5617 | * 17_intro/header_ios.cc | |
5618 | * 17_intro/header_iosfwd.cc | |
5619 | * 17_intro/header_iostream.cc | |
5620 | * 17_intro/header_istream.cc | |
5621 | * 17_intro/header_ostream.cc | |
5622 | * 17_intro/headers.cc | |
5623 | * 17_intro/headers_c++_c++0x_compat.cc | |
5624 | * 17_intro/headers_c.cc | |
5625 | * 17_intro/headers_c++.cc | |
5626 | * 17_intro/header_sstream.cc | |
5627 | * 17_intro/header_streambuf.cc | |
5628 | * 17_intro/no_assert_neg.cc | |
5629 | * 18_support/numeric_limits/sign.cc | |
5630 | * 18_support/numeric_limits/specialization.cc | |
5631 | * 20_util/memory/raw_storage_iterator.cc | |
5632 | * 21_strings/basic_string/1.cc | |
5633 | * 21_strings/basic_string/2.cc | |
5634 | * 22_locale/codecvt/1.cc | |
5635 | * 22_locale/codecvt/2.cc | |
5636 | * 22_locale/codecvt_byname/1.cc | |
5637 | * 22_locale/collate/1.cc | |
5638 | * 22_locale/collate/2.cc | |
5639 | * 22_locale/collate_byname/1.cc | |
5640 | * 22_locale/ctype/1.cc | |
5641 | * 22_locale/ctype_base/1.cc | |
5642 | * 22_locale/messages/1.cc | |
5643 | * 22_locale/messages/2.cc | |
5644 | * 22_locale/messages_byname/1.cc | |
5645 | * 22_locale/money_get/1.cc | |
5646 | * 22_locale/money_get/2.cc | |
5647 | * 22_locale/money_get/3.cc | |
5648 | * 22_locale/moneypunct/1.cc | |
5649 | * 22_locale/moneypunct/2.cc | |
5650 | * 22_locale/moneypunct/3.cc | |
5651 | * 22_locale/moneypunct_byname/1.cc | |
5652 | * 22_locale/money_put/1.cc | |
5653 | * 22_locale/money_put/2.cc | |
5654 | * 22_locale/money_put/3.cc | |
5655 | * 22_locale/num_get/1.cc | |
5656 | * 22_locale/num_get/2.cc | |
5657 | * 22_locale/num_get/3.cc | |
5658 | * 22_locale/numpunct/1.cc | |
5659 | * 22_locale/numpunct/2.cc | |
5660 | * 22_locale/numpunct_byname/1.cc | |
5661 | * 22_locale/num_put/1.cc | |
5662 | * 22_locale/num_put/2.cc | |
5663 | * 22_locale/num_put/3.cc | |
5664 | * 22_locale/time_get/1.cc | |
5665 | * 22_locale/time_get/2.cc | |
5666 | * 22_locale/time_put/1.cc | |
5667 | * 22_locale/time_put/2.cc | |
5668 | * 23_containers/deque/1.cc | |
5669 | * 23_containers/deque/explicit_instantiation | |
5670 | * 23_containers/deque/explicit_instantiation/1.cc | |
5671 | * 23_containers/deque/explicit_instantiation/2.cc | |
5672 | * 23_containers/deque/explicit_instantiation/3.cc | |
5673 | * 23_containers/list/1.cc | |
5674 | * 23_containers/list/explicit_instantiation | |
5675 | * 23_containers/list/explicit_instantiation/1.cc | |
5676 | * 23_containers/list/explicit_instantiation/2.cc | |
5677 | * 23_containers/list/explicit_instantiation/3.cc | |
5678 | * 23_containers/map/1.cc | |
5679 | * 23_containers/map/explicit_instantiation | |
5680 | * 23_containers/map/explicit_instantiation/1.cc | |
5681 | * 23_containers/map/explicit_instantiation/2.cc | |
5682 | * 23_containers/map/explicit_instantiation/3.cc | |
5683 | * 23_containers/multimap/1.cc | |
5684 | * 23_containers/multimap/explicit_instantiation | |
5685 | * 23_containers/multimap/explicit_instantiation/1.cc | |
5686 | * 23_containers/multimap/explicit_instantiation/2.cc | |
5687 | * 23_containers/multimap/explicit_instantiation/3.cc | |
5688 | * 23_containers/multiset/1.cc | |
5689 | * 23_containers/multiset/explicit_instantiation | |
5690 | * 23_containers/multiset/explicit_instantiation/1.cc | |
5691 | * 23_containers/multiset/explicit_instantiation/2.cc | |
5692 | * 23_containers/multiset/explicit_instantiation/3.cc | |
5693 | * 23_containers/set/1.cc | |
5694 | * 23_containers/set/explicit_instantiation | |
5695 | * 23_containers/set/explicit_instantiation/1.cc | |
5696 | * 23_containers/set/explicit_instantiation/2.cc | |
5697 | * 23_containers/set/explicit_instantiation/3.cc | |
5698 | * 23_containers/vector/1.cc | |
5699 | * 23_containers/vector/explicit_instantiation | |
5700 | * 23_containers/vector/explicit_instantiation/1.cc | |
5701 | * 23_containers/vector/explicit_instantiation/2.cc | |
5702 | * 23_containers/vector/explicit_instantiation/3.cc | |
5703 | * 24_iterators/26020.cc | |
5704 | * 24_iterators/back_insert_iterator.cc | |
5705 | * 24_iterators/front_insert_iterator.cc | |
5706 | * 24_iterators/insert_iterator.cc | |
5707 | * 24_iterators/istreambuf_iterator/1.cc | |
5708 | * 24_iterators/istream_iterator.cc | |
5709 | * 24_iterators/iterator.cc | |
5710 | * 24_iterators/ostreambuf_iterator/1.cc | |
5711 | * 24_iterators/ostream_iterator.cc | |
5712 | * 24_iterators/reverse_iterator/1.cc | |
5713 | * 26_numerics/cmath | |
5714 | * 26_numerics/cmath/19322.cc | |
5715 | * 26_numerics/cmath/c99_classification_macros_c.cc | |
5716 | * 26_numerics/cmath/c99_classification_macros_c++.cc | |
5717 | * 26_numerics/cmath/c_math.cc | |
5718 | * 26_numerics/cmath/c_math_dynamic.cc | |
5719 | * 26_numerics/cmath/fabs_inline.cc | |
5720 | * 26_numerics/cmath/overloads.cc | |
5721 | * 26_numerics/cmath/powi.cc | |
5722 | * 26_numerics/cstdlib | |
5723 | * 26_numerics/cstdlib/13943.cc | |
5724 | * 26_numerics/numeric | |
5725 | * 26_numerics/numeric/sum_diff.cc | |
5726 | * 26_numerics/valarray | |
5727 | * 26_numerics/valarray/27867.cc | |
5728 | * 26_numerics/valarray/28277.cc | |
5729 | * 26_numerics/valarray/30416.cc | |
5730 | * 26_numerics/valarray/binary_closure.cc | |
5731 | * 26_numerics/valarray/dr543.cc | |
5732 | * 26_numerics/valarray/slice_array_assignment.cc | |
5733 | * 26_numerics/valarray/slice.cc | |
5734 | * 26_numerics/valarray/valarray.cc | |
5735 | * 26_numerics/valarray/valarray_const_bracket.cc | |
5736 | * 26_numerics/valarray/valarray_name_lookup.cc | |
5737 | * 26_numerics/valarray/valarray_operators.cc | |
5738 | * 26_numerics/valarray/valarray_subset_assignment.cc | |
5739 | * 27_io/basic_filebuf/1.cc | |
5740 | * 27_io/basic_filebuf/2.cc | |
5741 | * 27_io/basic_filebuf/3.cc | |
5742 | * 27_io/basic_filebuf/4.cc | |
5743 | * 27_io/basic_fstream/1.cc | |
5744 | * 27_io/basic_fstream/2.cc | |
5745 | * 27_io/basic_fstream/3.cc | |
5746 | * 27_io/basic_fstream/4.cc | |
5747 | * 27_io/basic_ifstream/1.cc | |
5748 | * 27_io/basic_ifstream/2.cc | |
5749 | * 27_io/basic_ifstream/3.cc | |
5750 | * 27_io/basic_ifstream/4.cc | |
5751 | * 27_io/basic_ios/1.cc | |
5752 | * 27_io/basic_ios/2.cc | |
5753 | * 27_io/basic_ios/3.cc | |
5754 | * 27_io/basic_ios/4.cc | |
5755 | * 27_io/basic_iostream/1.cc | |
5756 | * 27_io/basic_iostream/2.cc | |
5757 | * 27_io/basic_iostream/3.cc | |
5758 | * 27_io/basic_iostream/4.cc | |
5759 | * 27_io/basic_istream/1.cc | |
5760 | * 27_io/basic_istream/2.cc | |
5761 | * 27_io/basic_istream/3.cc | |
5762 | * 27_io/basic_istream/4.cc | |
5763 | * 27_io/basic_istringstream/1.cc | |
5764 | * 27_io/basic_istringstream/2.cc | |
5765 | * 27_io/basic_istringstream/3.cc | |
5766 | * 27_io/basic_istringstream/4.cc | |
5767 | * 27_io/basic_ofstream/1.cc | |
5768 | * 27_io/basic_ofstream/2.cc | |
5769 | * 27_io/basic_ofstream/3.cc | |
5770 | * 27_io/basic_ofstream/4.cc | |
5771 | * 27_io/basic_ostream/1.cc | |
5772 | * 27_io/basic_ostream/2.cc | |
5773 | * 27_io/basic_ostream/3.cc | |
5774 | * 27_io/basic_ostream/4.cc | |
5775 | * 27_io/basic_ostringstream/1.cc | |
5776 | * 27_io/basic_ostringstream/2.cc | |
5777 | * 27_io/basic_ostringstream/3.cc | |
5778 | * 27_io/basic_ostringstream/4.cc | |
5779 | * 27_io/basic_streambuf/1.cc | |
5780 | * 27_io/basic_streambuf/2.cc | |
5781 | * 27_io/basic_streambuf/3.cc | |
5782 | * 27_io/basic_stringbuf/1.cc | |
5783 | * 27_io/basic_stringbuf/2.cc | |
5784 | * 27_io/basic_stringbuf/3.cc | |
5785 | * 27_io/basic_stringbuf/4.cc | |
5786 | * 27_io/basic_stringbuf/5.cc | |
5787 | * 27_io/basic_stringstream/1.cc | |
5788 | * 27_io/basic_stringstream/2.cc | |
5789 | * 27_io/basic_stringstream/3.cc | |
5790 | * 27_io/basic_stringstream/4.cc | |
5791 | * 27_io/fpos/1.cc | |
5792 | * ext/debug_allocator/instantiate.cc | |
5793 | * ext/hash_map/instantiate.cc | |
5794 | * ext/hash_set/instantiate.cc | |
5795 | * ext/malloc_allocator/instantiate.cc | |
5796 | * ext/mt_allocator/instantiate.cc | |
5797 | * ext/pool_allocator/instantiate.cc | |
5798 | * ext/slist/instantiate.cc | |
5799 | * ext/stdio_filebuf/char/1.cc | |
5800 | * ext/vstring/explicit_instantiation | |
5801 | * ext/vstring/explicit_instantiation/1.cc | |
5802 | * ext/vstring/explicit_instantiation/2.cc | |
5803 | * ext/vstring/explicit_instantiation/char | |
5804 | * ext/vstring/explicit_instantiation/char/1.cc | |
5805 | * ext/vstring/explicit_instantiation/wchar_t | |
5806 | * ext/vstring/explicit_instantiation/wchar_t/1.cc | |
5807 | * tr1/2_general_utilities/memory/enable_shared_from_this/ | |
5808 | explicit_instantiation | |
5809 | * tr1/2_general_utilities/memory/enable_shared_from_this/ | |
5810 | explicit_instantiation/1.cc | |
5811 | * tr1/2_general_utilities/memory/shared_ptr/explicit_instantiation | |
5812 | * tr1/2_general_utilities/memory/shared_ptr/explicit_instantiation/1.cc | |
5813 | * tr1/2_general_utilities/memory/weak_ptr/explicit_instantiation | |
5814 | * tr1/2_general_utilities/memory/weak_ptr/explicit_instantiation/1.cc | |
5815 | * tr1/5_numerical_facilities/random/discard_block/requirements/ | |
5816 | requirements.cc | |
5817 | * tr1/6_containers/array/requirements/instantiate.cc | |
5818 | * tr1/6_containers/unordered | |
5819 | * tr1/6_containers/unordered/23781.cc | |
5820 | * tr1/6_containers/unordered/capacity | |
5821 | * tr1/6_containers/unordered/capacity/29134-map.cc | |
5822 | * tr1/6_containers/unordered/capacity/29134-multimap.cc | |
5823 | * tr1/6_containers/unordered/capacity/29134-multiset.cc | |
5824 | * tr1/6_containers/unordered/capacity/29134-set.cc | |
5825 | * tr1/6_containers/unordered/erase | |
5826 | * tr1/6_containers/unordered/erase/24061-map.cc | |
5827 | * tr1/6_containers/unordered/erase/24061-multimap.cc | |
5828 | * tr1/6_containers/unordered/erase/24061-multiset.cc | |
5829 | * tr1/6_containers/unordered/erase/24061-set.cc | |
5830 | * tr1/6_containers/unordered/find | |
5831 | * tr1/6_containers/unordered/find/map1.cc | |
5832 | * tr1/6_containers/unordered/find/multimap1.cc | |
5833 | * tr1/6_containers/unordered/find/multiset1.cc | |
5834 | * tr1/6_containers/unordered/find/set1.cc | |
5835 | * tr1/6_containers/unordered/hash | |
5836 | * tr1/6_containers/unordered/hash/24799.cc | |
5837 | * tr1/6_containers/unordered/hashtable | |
5838 | * tr1/6_containers/unordered/hashtable/23053.cc | |
5839 | * tr1/6_containers/unordered/hashtable/23465.cc | |
5840 | * tr1/6_containers/unordered/hashtable/24054.cc | |
5841 | * tr1/6_containers/unordered/hashtable/24064.cc | |
5842 | * tr1/6_containers/unordered/hashtable/26127.cc | |
5843 | * tr1/6_containers/unordered/hashtable/26132.cc | |
5844 | * tr1/6_containers/unordered/hashtable/iterators_default_constructor.cc | |
5845 | * tr1/6_containers/unordered/insert | |
5846 | * tr1/6_containers/unordered/insert/24061-map.cc | |
5847 | * tr1/6_containers/unordered/insert/24061-multimap.cc | |
5848 | * tr1/6_containers/unordered/insert/24061-multiset.cc | |
5849 | * tr1/6_containers/unordered/insert/24061-set.cc | |
5850 | * tr1/6_containers/unordered/insert/array_syntax.cc | |
5851 | * tr1/6_containers/unordered/insert/map_range.cc | |
5852 | * tr1/6_containers/unordered/insert/map_single.cc | |
5853 | * tr1/6_containers/unordered/insert/multimap_range.cc | |
5854 | * tr1/6_containers/unordered/insert/multimap_single.cc | |
5855 | * tr1/6_containers/unordered/insert/multiset_range.cc | |
5856 | * tr1/6_containers/unordered/insert/multiset_single.cc | |
5857 | * tr1/6_containers/unordered/insert/set_range.cc | |
5858 | * tr1/6_containers/unordered/insert/set_single.cc | |
5859 | * tr1/6_containers/unordered/instantiate | |
5860 | * tr1/6_containers/unordered/instantiate/hash.cc | |
5861 | * tr1/6_containers/unordered/instantiate/map.cc | |
5862 | * tr1/6_containers/unordered/instantiate/multimap.cc | |
5863 | * tr1/6_containers/unordered/instantiate/multiset.cc | |
5864 | * tr1/6_containers/unordered/instantiate/set.cc | |
5865 | * tr1/6_containers/unordered/swap | |
5866 | * tr1/6_containers/unordered/swap/unordered_map | |
5867 | * tr1/6_containers/unordered/swap/unordered_map/1.cc | |
5868 | * tr1/6_containers/unordered/swap/unordered_map/2.cc | |
5869 | * tr1/6_containers/unordered/swap/unordered_multimap | |
5870 | * tr1/6_containers/unordered/swap/unordered_multimap/1.cc | |
5871 | * tr1/6_containers/unordered/swap/unordered_multimap/2.cc | |
5872 | * tr1/6_containers/unordered/swap/unordered_multiset | |
5873 | * tr1/6_containers/unordered/swap/unordered_multiset/1.cc | |
5874 | * tr1/6_containers/unordered/swap/unordered_multiset/2.cc | |
5875 | * tr1/6_containers/unordered/swap/unordered_set | |
5876 | * tr1/6_containers/unordered/swap/unordered_set/1.cc | |
5877 | * tr1/6_containers/unordered/swap/unordered_set/2.cc | |
5878 | * tr1/6_containers/unordered/types | |
5879 | * tr1/6_containers/unordered/types/map_iterator.cc | |
5880 | * tr1/6_containers/unordered/types/multimap_iterator.cc | |
5881 | * tr1/6_containers/unordered/types/multiset_iterator.cc | |
5882 | * tr1/6_containers/unordered/types/set_iterator.cc | |
5883 | ||
f05e2819 | 5884 | * testsuite/24_iterators/reverse_iterator/2.cc: To just one |
a024740d | 5885 | non-requirements test. |
f05e2819 | 5886 | * testsuite/ext/headers.cc: Add new includes. |
a024740d | 5887 | |
f56fe8ff PC |
5888 | 2007-02-18 Paolo Carlini <pcarlini@suse.de> |
5889 | ||
5890 | PR libstdc++/28080 (partial) | |
5891 | * include/bits/stl_algobase.h: Do not include <climits>, use | |
5892 | std::numeric_limits. | |
5893 | * include/bits/stl_bvector.h: Use __CHAR_BIT__. | |
5894 | * config/locale/gnu/codecvt_members.cc: Include <climits>. | |
5895 | * config/locale/generic/codecvt_members.cc: Likewise. | |
5896 | * include/std/string: Do not include <algorithm>; do not include | |
5897 | <memory>, include <bits/allocator.h> instead. | |
5898 | * include/ext/vstring_fwd.h: Likewise. | |
5899 | * include/ext/vstring_util.h: Do not include <algorithm>. | |
5900 | * include/tr1/hashtable_policy.h: Include <algorithm>. | |
5901 | * testsuite/21_strings/basic_string/replace/char/1.cc: Likewise. | |
5902 | * testsuite/21_strings/basic_string/replace/wchar_t/1.cc: Likewise. | |
5903 | * testsuite/23_containers/bitset/cons/1.cc: Likewise. | |
5904 | * testsuite/util/testsuite_character.h: Likewise. | |
5905 | ||
5906 | * config/locale/gnu/codecvt_members.cc: Also include <cstdlib>, | |
5907 | for MB_CUR_MAX. | |
5908 | * config/locale/generic/codecvt_members.cc: Likewise. | |
5909 | ||
01bc4081 PC |
5910 | 2007-02-16 Paolo Carlini <pcarlini@suse.de> |
5911 | ||
5912 | Revert. | |
5913 | 2007-02-14 Hans-Peter Nilsson <hp@axis.com> | |
5914 | ||
5915 | PR middle-end/30768 | |
5916 | * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: | |
5917 | Xfail ICE for cris-*-*. | |
5918 | ||
6b08c92c HPN |
5919 | 2007-02-14 Hans-Peter Nilsson <hp@axis.com> |
5920 | ||
5921 | PR middle-end/30768 | |
5922 | * testsuite/ext/pb_ds/regression/list_update_data_map_rand.cc: | |
5923 | Xfail ICE for cris-*-*. | |
5924 | ||
5f34ed87 BK |
5925 | 2007-02-14 Benjamin Kosnik <bkoz@redhat.com> |
5926 | ||
01bc4081 | 5927 | * configure.ac: Move AM_ICONV to native-only, add HAVE_ICONV for |
5f34ed87 | 5928 | newlib. |
01bc4081 PC |
5929 | * configure: Regenerate. |
5930 | ||
9e0b7527 DM |
5931 | 2007-02-13 Dirk Mueller <dmueller@suse.de> |
5932 | ||
5933 | * include/bits/locale_facets.tcc (num_get<>::do_get): Avoid | |
5934 | warning about ambiguous else. | |
5935 | ||
bad333ff PC |
5936 | 2007-02-12 Paolo Carlini <pcarlini@suse.de> |
5937 | ||
5938 | PR libstdc++/21172 | |
5939 | * include/bits/stl_heap.h (__adjust_heap(_RandomAccessIterator, | |
5940 | _Distance, _Distance, _Tp), __adjust_heap(_RandomAccessIterator, | |
5941 | _Distance, _Distance, _Tp, _Compare)): Avoid potential integer | |
5942 | overflow. | |
5943 | ||
5944 | * include/bits/stl_heap.h (__is_heap(_RandomAccessIterator, | |
5945 | _RandomAccessIterator), __is_heap(_RandomAccessIterator, | |
5946 | _RandomAccessIterator, _StrictWeakOrdering): Mark inline. | |
5947 | (make_heap(_RandomAccessIterator, _RandomAccessIterator, | |
5948 | _Compare)): Do not mark inline. | |
5949 | ||
5950 | * include/bits/stl_heap.h (push_heap(_RandomAccessIterator, | |
5951 | _RandomAccessIterator), sort_heap(_RandomAccessIterator, | |
5952 | _RandomAccessIterator)): Uncomment __glibcxx_requires_heap. | |
5953 | ||
bd01e4ea RS |
5954 | 2007-02-09 Richard Sandiford <richard@codesourcery.com> |
5955 | ||
5956 | * testsuite/22_locale/time_put/put/wchar_t/1.cc: XFAIL if | |
5957 | dummy_wcsftime. | |
5958 | * testsuite/22_locale/time_put/put/wchar_t/5.cc: Likewise. | |
5959 | * testsuite/22_locale/time_put/put/wchar_t/9.cc: Likewise. | |
5960 | * testsuite/22_locale/time_put/put/wchar_t/10.cc: Likewise. | |
5961 | * testsuite/22_locale/num_get/get/wchar_t/2.cc: XFAIL if lax_strtofp. | |
5962 | * testsuite/22_locale/num_get/get/char/2.cc: Likewise. | |
5963 | * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/12.cc: | |
5964 | Likewise. | |
5965 | * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/09.cc: | |
5966 | Likewise. | |
5967 | * testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc: | |
5968 | Likewise. | |
5969 | * testsuite/27_io/basic_istream/extractors_arithmetic/char/09.cc: | |
5970 | Likewise. | |
5971 | * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/6.cc: | |
5972 | Likewise. | |
5973 | * testsuite/27_io/basic_ostream/inserters_arithmetic/char/6.cc: | |
5974 | Likewise. | |
5975 | * testsuite/26_numerics/cmath/c99_classification_macros_c++.cc: XFAIL | |
5976 | for uClibc. | |
5977 | * testsuite/26_numerics/cmath/c99_classification_macros_c.cc: Likewise. | |
5978 | ||
917fbceb PC |
5979 | 2007-02-09 Paolo Carlini <pcarlini@suse.de> |
5980 | ||
5981 | * scripts/testsuite_flags.in: Add back @LIBICONV@ to SECTIONLDFLAGS. | |
5982 | ||
687e00ee HH |
5983 | 2007-02-08 Howard Hinnant <hhinnant@apple.com> |
5984 | ||
5985 | PR libstdc++/17012 | |
5986 | * include/bits/list.tcc (list<>::remove): Take care of | |
5987 | &*__first == &__value. | |
5988 | * docs/html/ext/howto.html: Add an entry for DR 526. | |
5989 | ||
78e075d4 JJ |
5990 | 2007-02-07 Jakub Jelinek <jakub@redhat.com> |
5991 | ||
5992 | PR libgomp/28468 | |
5993 | * configure: Regenerate. | |
5994 | ||
ed445ba3 HPN |
5995 | 2007-02-07 Hans-Peter Nilsson <hp@axis.com> |
5996 | ||
7c2a87ad | 5997 | PR testsuite/28870 |
ed445ba3 HPN |
5998 | * testsuite/27_io/basic_stringbuf/overflow/char/1.cc: Use only |
5999 | 10000 iterations for simulator targets. | |
6000 | * testsuite/ext/pb_ds/regression/tree_data_map_rand.cc: Use only 5 | |
6001 | iterations for simulator targets. | |
6002 | * testsuite/ext/pb_ds/regression/tree_no_data_map_rand.cc: Ditto. | |
6003 | * testsuite/ext/pb_ds/regression/trie_data_map_rand.cc: Ditto. | |
6004 | * testsuite/ext/pb_ds/regression/trie_no_data_map_rand.cc: Ditto. | |
6005 | * testsuite/ext/pb_ds/regression/hash_no_data_map_rand.cc: Ditto. | |
6006 | * testsuite/ext/pb_ds/regression/hash_data_map_rand.cc: Ditto. | |
6007 | * testsuite/ext/pb_ds/regression/priority_queue_rand.cc: Ditto. | |
6008 | * testsuite/23_containers/set/modifiers/16728.cc: Use only 10 | |
6009 | iterations for simulator targets. | |
6010 | ||
bdbccd1c BK |
6011 | 2007-02-06 Benjamin Kosnik <bkoz@redhat.com> |
6012 | Marco Trudel <mtrudel@gmx.ch> | |
6013 | ||
0469f461 BK |
6014 | * include/precompiled/extc++.h: Guard include files that assume |
6015 | iconv support is present from precompilation via | |
6016 | _GLIBCXX_HAVE_ICONV. | |
bdbccd1c | 6017 | |
1444936f PC |
6018 | 2007-02-05 Paolo Carlini <pcarlini@suse.de> |
6019 | ||
6020 | * include/bits/stl_deque.h (operator<): Qualify call. | |
6021 | ||
311635d1 BK |
6022 | 2007-02-02 Benjamin Kosnik <bkoz@redhat.com> |
6023 | ||
6024 | * include/bits/c++config: Consistent macro guards for config includes. | |
6025 | * config/locale/gnu/c_locale.h: Same. | |
6026 | * config/locale/generic/c_locale.h: Same. | |
6027 | * config/allocator/mt_allocator_base.h: Same. | |
6028 | * config/allocator/malloc_allocator_base.h: Same. | |
6029 | * config/allocator/new_allocator_base.h: Same. | |
6030 | * config/allocator/pool_allocator_base.h: Same. | |
6031 | * config/allocator/bitmap_allocator_base.h: Same. | |
6032 | * config/os/vxworks/os_defines.h: Same. | |
6033 | * config/cpu/sh/atomicity.h: Same. | |
6034 | * config/io/c_io_stdio.h: Same. | |
6035 | * config/io/basic_file_stdio.h: Same. | |
6036 | ||
c3f0f556 PC |
6037 | 2007-02-01 Paolo Carlini <pcarlini@suse.de> |
6038 | ||
6039 | PR libstdc++/14493 | |
6040 | * libsupc++/typeinfo (bad_cast::what, bad_typeid::what): Declare. | |
6041 | * libsupc++/tinfo.cc: Define. | |
6042 | * libsupc++/exception (bad_exception::what): Declare. | |
6043 | * libsupc++/eh_exception.cc: Define. | |
6044 | (exception::what): Adjust, don't use typeid. | |
6045 | * libsupc++/new (bad_alloc::what): Declare. | |
6046 | * libsupc++/new_handler.cc: Define. | |
6047 | * config/abi/pre/gnu.ver: Export the new methods @3.4.9; adjust | |
6048 | existing 3.4.10 exports to 3.4.9. | |
6049 | * configure.ac: Adjust to 6.0.9. | |
6050 | * configure: Regenerate. | |
6051 | * testsuite/util/testsuite_abi.cc: Update. | |
6052 | * testsuite/18_support/14493.cc: New. | |
6053 | ||
20fdc40c BE |
6054 | 2007-02-01 Ben Elliston <bje@au.ibm.com> |
6055 | ||
6056 | * libsupc++/eh_alloc.cc (__cxa_free_exception): Don't refer to the | |
6057 | emergency_buffer using `&array[0][0]' notation, use `array'. | |
6058 | ||
e894edef BK |
6059 | 2007-01-30 Benjamin Kosnik <bkoz@redhat.com> |
6060 | ||
6061 | PR libstdc++/30571 | |
6062 | * include/ext/pb_ds/detail/type_utils.hpp: Use C++0x | |
6063 | static_assert if available, if not, centralize PB_DS_STATIC_ASSERT | |
6064 | definition here. | |
6065 | * include/ext/pb_ds/detail/resize_policy/ | |
6066 | cc_hash_max_collision_check_resize_trigger_imp.hpp: Remove | |
6067 | PB_DS_STATIC_ASSERT definition. | |
6068 | * include/ext/pb_ds/detail/resize_policy/ | |
6069 | hash_load_check_resize_trigger_imp.hpp: Same. | |
6070 | * include/ext/pb_ds/detail/resize_policy/ | |
6071 | hash_standard_resize_policy_imp.hpp: Same. | |
6072 | * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp: Same. | |
6073 | * include/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp: Same. | |
6074 | * include/ext/pb_ds/detail/pat_trie_/internal_node.hpp: Same. | |
6075 | * include/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp: Same. | |
6076 | * include/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp: Same. | |
6077 | * include/ext/pb_ds/trie_policy.hpp: Same. | |
6078 | * testsuite/util/performance/assoc/timing/ | |
6079 | tree_order_statistics_test.hpp: Same. | |
6080 | * testsuite/ext/pb_ds/example/hash_resize_neg.cc: Adjust line numbers. | |
6081 | * testsuite/17_intro/headers_c++_c++0x_compat.cc: New. | |
6082 | ||
6083 | * include/precompiled/extc++.h: Update to current list of ext files. | |
6084 | ||
263e3c33 PC |
6085 | 2007-01-29 Paolo Carlini <pcarlini@suse.de> |
6086 | ||
6087 | * include/bits/stl_uninitialized.h (uninitialized_copy(const char*, | |
6088 | const char*, char*), uninitialized_copy(const wchar_t*, const wchar_t*, | |
6089 | wchar_t*)): Remove, just forward to std::copy. | |
6090 | ||
4ffe6e87 BK |
6091 | 2007-01-29 Benjamin Kosnik <bkoz@redhat.com> |
6092 | ||
6093 | * include/ext/enc_filebuf.h: Resurrect, update. | |
6094 | * include/ext/codecvt_specializations.h: Remove | |
6095 | _GLIBCXX_USE_ICONV, _GLIBCXX_USE_ENCODING_STATE. | |
6096 | * include/bits/localefwd.h: Remove declaration for __enc_traits. | |
6097 | * docs/html/22_locale/codecvt.html: Change __enc_traits to | |
6098 | encoding_state. | |
6099 | * scripts/testsuite_flags.in: Remove ICONV. | |
6100 | ||
6101 | * configure.ac: Remove GLIBCXX_CHECK_ICONV_SUPPORT. | |
6102 | * acinclude.m4 (GLIBCXX_CHECK_ICONV_SUPPORT): Remove. | |
6103 | * crossconfig.m4: Remove use of GLIBCXX_CHECK_ICONV_SUPPORT. | |
6104 | * config.h.in: Remove HAVE_ICONV_CLOSE, HAVE_ICONV_OPEN, | |
6105 | HAVE_NL_LANGINFO, _GLIBCXX_USE_ICONV. | |
6106 | * include/Makefile.am: Uglify ICONV_CONST. | |
6107 | * configure: Regenerate. | |
6108 | * aclocal.m4: Regenerate. | |
6109 | * Makefile.in: Regenerate. | |
6110 | * src/Makefile.in: Regenerate. | |
6111 | * po/Makefile.in: Regenerate. | |
6112 | * libmath/Makefile.in: Regenerate. | |
6113 | * include/Makefile.in: Regenerate. | |
6114 | * libsupc++/Makefile.in: Regenerate. | |
6115 | * testsuite/Makefile.in: Regenerate. | |
6116 | ||
6117 | * testsuite/ext/enc_filebuf/wchar_t/13189.cc: Use | |
6118 | dg-require-iconv, fix up for encoding_state changes. | |
6119 | * testsuite/ext/enc_filebuf/char/13189.cc: Same. | |
6120 | * testsuite/ext/enc_filebuf/char/13598.cc: Same. | |
6121 | * testsuite/22_locale/codecvt/unicode: Move... | |
6122 | * testsuite/22_locale/codecvt/unicode/char.cc: Move... | |
6123 | * testsuite/22_locale/codecvt/unicode/1.cc: Move... | |
6124 | * testsuite/22_locale/codecvt/unicode/wchar_t.cc: Move... | |
6125 | * testsuite/ext/codecvt: New. | |
6126 | * testsuite/ext/codecvt/char-1.cc: ...here. Also, use dg-require-iconv. | |
6127 | * testsuite/ext/codecvt/char-2.cc: ...here. Same. | |
6128 | * testsuite/ext/codecvt/1.cc: ...here. Same. | |
6129 | * testsuite/ext/codecvt/wchar_t.cc: ...here. Same. | |
6130 | * testsuite/22_locale/locale/cons/unicode: Delete directory. | |
6131 | * testsuite/22_locale/locale/cons/unicode/1.cc: Move... | |
6132 | * testsuite/22_locale/locale/cons/unicode.cc: ...here. | |
6133 | ||
226a2e08 PC |
6134 | 2007-01-28 Paolo Carlini <pcarlini@suse.de> |
6135 | ||
6136 | * include/bits/locale_facets.tcc (num_get<>::do_get(iter_type, | |
6137 | iter_type, ios_base&, ios_base::iostate&, bool&), | |
6138 | num_put<>::_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT)): | |
6139 | -Wconversion and -Woverflow fixes. | |
6140 | * include/bits/istream.tcc (operator>>(int&), operator>>(short&)): | |
6141 | Likewise. | |
6142 | * include/std/valarray (valarray<>::shift, cshift): Likewise. | |
6143 | ||
ddde5c6d PC |
6144 | 2007-01-26 Paolo Carlini <pcarlini@suse.de> |
6145 | ||
6146 | PR libstdc++/30586 | |
6147 | * config/cpu/ia64/atomic_word.h: Just include <bits/cxxabi_tweaks.h>. | |
6148 | * testsuite/abi/30586.cc: New. | |
6149 | ||
6bfcbf0d NM |
6150 | 2007-01-25 Nathan Myers <ncm@cantrip.org> |
6151 | ||
6152 | * include/bits/streambuf_iterator.h (istreambuf_iterator<>::equal): | |
6153 | Simplify. | |
6154 | ||
45dc23a6 SL |
6155 | 2007-01-24 Steve LoBasso <slobasso@yahoo.com> |
6156 | Paolo Carlini <pcarlini@suse.de> | |
6157 | ||
6158 | * include/bits/deque.tcc (deque<>::erase(iterator, iterator)): | |
6159 | Fix condition. | |
6160 | * testsuite/23_containers/deque/modifiers/erase/3.cc: New. | |
6161 | ||
ca32e64e AP |
6162 | 2007-01-24 Andrew Pinski <andrew_pinski@playstation.sony.com> |
6163 | ||
6164 | * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Replace | |
6165 | _Unwind_Word with _uleb128_t in the SJLJ context. | |
6166 | ||
9e451553 BK |
6167 | 2007-01-24 Benjamin Kosnik <bkoz@redhat.com> |
6168 | ||
6169 | PR libstdc++/29722 continued | |
6170 | * testsuite/lib/libstdc++.exp (v3_target_compile_as_c): Add | |
6171 | libsupc++ library directory. | |
6172 | * testsuite/abi/cxx_runtime_only_linkage.cc: Remove hard-coded | |
6173 | path specification. | |
6174 | ||
f767122b AK |
6175 | 2007-01-24 Andreas Krebbel <krebbel1@de.ibm.com> |
6176 | ||
6177 | * libsupc++/eh_personality.cc (parse_lsda_header, check_exception_spec, | |
6178 | get_ttype_entry, empty_exception_spec, PERSONALITY_FUNCTION): Replaced | |
6179 | _Unwind_Word with _uleb128_t and _Unwind_SWord with _sleb128_t. | |
6180 | ||
aa5ccd99 PC |
6181 | 2007-01-22 Paolo Carlini <pcarlini@suse.de> |
6182 | ||
6183 | * include/bits/stl_algobase.h (__fill_aux(unsigned char*, | |
6184 | unsigned char*, const unsigned char&), __fill_aux(signed char*, | |
6185 | signed char*, const signed char&), __fill_aux(char*, char*, | |
6186 | const char&), __fill_aux(wchar_t*, wchar_t*, const wchar_t&)): | |
6187 | Take the character by value. | |
6188 | (__fill_n_aux): Likewise. | |
6189 | ||
e9e90c1f PC |
6190 | 2007-01-21 Paolo Carlini <pcarlini@suse.de> |
6191 | ||
6192 | PR libstdc++/30449 (fill, fill_n) | |
6193 | * include/bits/stl_algobase.h (__fill_aux(wchar_t*, wchar_t*, | |
6194 | const wchar_t&), __fill_n_aux(wchar_t*, _Size, const wchar_t&)): New. | |
6195 | (fill(signed char*, signed char*, const signed char&), | |
6196 | fill(unsigned char*, unsigned char*, const unsigned char&), | |
6197 | fill(char*, char*, char&), fill_n(signed char*, _Size, | |
6198 | const signed char&), fill_n(unsigned char*, _Size, | |
6199 | const unsigned char&), fill_n(char*, _Size, char&)): Rename to | |
6200 | __*_aux. | |
6201 | (__fill_normal, __fill_n_normal): New, call the latter. | |
6202 | (fill, fill_n): Adjust, call the latter. | |
6203 | * testsuite/25_algorithms/fill/4.cc: New. | |
6204 | * testsuite/25_algorithms/fill/5.cc: New. | |
6205 | ||
9521dd6b PC |
6206 | 2007-01-18 Paolo Carlini <pcarlini@suse.de> |
6207 | ||
6208 | * include/bits/basic_string.h (basic_string<>::_S_compare): Add. | |
6209 | (compare(const basic_string&)): Use it. | |
6210 | * include/bits/basic_string.tcc (compare(size_type, size_type, | |
6211 | const basic_string&), compare(size_type, size_type, | |
6212 | const basic_string&, size_type, size_type), compare(const _CharT*), | |
6213 | compare(size_type, size_type, const _CharT*), compare(size_type, | |
6214 | size_type, const _CharT*, size_type)): Likewise. | |
6215 | * include/ext/vstring_util.h (__vstring_utility<>::_S_compare): Add. | |
6216 | * include/ext/vstring.h (compare(const __versa_string&)): Use it. | |
6217 | * include/ext/vstring.tcc (compare(size_type, size_type, | |
6218 | const __versa_string&), compare(size_type, size_type, | |
6219 | const __versa_string&, size_type, size_type), compare(const _CharT*), | |
6220 | compare(size_type, size_type, const _CharT*), compare(size_type, | |
6221 | size_type, const _CharT*, size_type)): Likewise. | |
6222 | ||
6ae39fd9 ILT |
6223 | 2007-01-15 Ian Lance Taylor <iant@google.com> |
6224 | Paolo Carlini <pcarlini@suse.de> | |
6225 | ||
6226 | * include/ext/type_traits.h: Fix __glibcxx_max macro. | |
6227 | * include/std/limits: Likewise. | |
6228 | ||
226d4e94 PC |
6229 | 2007-01-15 Paolo Carlini <pcarlini@suse.de> |
6230 | ||
6231 | * include/std/valarray (valarray<>::cshift): Fix typo. | |
6232 | ||
30beae0c PC |
6233 | 2007-01-14 Paolo Carlini <pcarlini@suse.de> |
6234 | ||
6235 | * include/bits/stl_algobase.h (fill_n(char*, _Size, | |
6236 | const signed char&)): Fix signature. | |
6237 | * testsuite/25_algorithms/fill/3.cc: New. | |
6238 | ||
8f0d85d6 JDA |
6239 | 2007-01-13 John David Anglin <dave.anglin@nrc-cnrc.gc> |
6240 | ||
6241 | * config/cpu/hppa/atomicity.h (__exchange_and_add): Don't use ordered | |
6242 | store. | |
6243 | (__atomic_add): Likewise. | |
6244 | ||
d8867564 PC |
6245 | 2007-01-13 Paolo Carlini <pcarlini@suse.de> |
6246 | ||
6247 | PR libstdc++/14991 | |
6248 | * docs/html/17_intro/porting-howto.html ([3]): Mention stdio_filebuf. | |
6249 | * docs/html/17_intro/porting-howto.xml: Remove. | |
6250 | ||
6251 | * docs/html/17_intro/porting-howto.html: Remove spurious end tags | |
6252 | pointed out by validator.w3.org. | |
6253 | ||
102693c7 PC |
6254 | 2007-01-12 Paolo Carlini <pcarlini@suse.de> |
6255 | ||
6256 | PR libstdc++/30416 (continued) | |
6257 | * include/std/valarray (valarray<>::shift, valarray<>::cshift): | |
6258 | Allways return the same variable, thus facilitating NRVO. | |
6259 | ||
8e768214 PC |
6260 | 2007-01-12 Paolo Carlini <pcarlini@suse.de> |
6261 | ||
6262 | PR libstdc++/30416 | |
6263 | * include/std/valarray (valarray<>::shift, valarray<>::cshift): | |
6264 | Do not segfault when |n| > size. | |
6265 | * testsuite/26_numerics/valarray/30416.cc: New. | |
6266 | ||
6db1de4c | 6267 | 2007-01-06 Paolo Carlini <pcarlini@suse.de> |
b7ee72de | 6268 | |
6db1de4c | 6269 | PR libstdc++/30365 |
28ecbda5 | 6270 | * crossconfig.m4 (case *-linux*): Run GLIBCXX_CHECK_LFS. |
a429affe BK |
6271 | * configure: Regenerate. |
6272 | ||
6db1de4c | 6273 | 2007-01-06 Matthias Klose <doko@debian.org> |
49d5c016 | 6274 | |
6db1de4c PC |
6275 | * include/tr1/random (gamma_distribution): Fix typo in formula. |
6276 | * docs/doxygen/user.cfg.in: Use package amsmath. |