2003-12-04 Christopher Saunders <ctsa@u.washington.edu>
PR libstdc++/13290
* include/bits/stl_algo.h (generate_n): Fix typo.
From-SVN: r74284
+2003-12-04 Christopher Saunders <ctsa@u.washington.edu>
+
+ PR libstdc++/13290
+ * include/bits/stl_algo.h (generate_n): Fix typo.
+
2003-12-03 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/basic_ios.h (basic_ios::setstate): Revert.
// concept requirements
__glibcpp_function_requires(_OutputIteratorConcept<_OutputIter,
// "the type returned by a _Generator"
- __typeof__(gen())>)
+ __typeof__(__gen())>)
for ( ; __n > 0; --__n, ++__first)
*__first = __gen();