[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2010-05-21 Thread paolo dot carlini at oracle dot com
--- Comment #7 from paolo dot carlini at oracle dot com 2010-05-21 15:29 --- C++0x is not going to be much different here, thus let's fix the implementation for now and be done with it. -- paolo dot carlini at oracle dot com changed: What|Removed

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2010-05-21 Thread paolo at gcc dot gnu dot org
--- Comment #8 from paolo at gcc dot gnu dot org 2010-05-21 16:57 --- Subject: Bug 25306 Author: paolo Date: Fri May 21 16:57:17 2010 New Revision: 159677 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=159677 Log: 2010-05-21 Paolo Carlini paolo.carl...@oracle.com PR

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2010-05-21 Thread paolo dot carlini at oracle dot com
--- Comment #9 from paolo dot carlini at oracle dot com 2010-05-21 17:01 --- Fixed for 4.6.0. -- paolo dot carlini at oracle dot com changed: What|Removed |Added

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2006-02-26 Thread pcarlini at suse dot de
-- pcarlini at suse dot de changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2006-02-26 Thread pcarlini at suse dot de
--- Comment #6 from pcarlini at suse dot de 2006-02-26 10:10 --- For now... -- pcarlini at suse dot de changed: What|Removed |Added Status|NEW

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2006-01-10 Thread chris at bubblescope dot net
--- Comment #2 from chris at bubblescope dot net 2006-01-10 10:37 --- I'm unclear on why it should be convertable to one of the built-in integral types at all.. surely saying that iterator_traits_OutputIterator::difference_type (where _OutputIterator is the first parameter to the

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2006-01-10 Thread sebor at roguewave dot com
--- Comment #3 from sebor at roguewave dot com 2006-01-10 16:14 --- (In reply to comment #2) I'm not sure what you mean. Could you show what one of the algorithms would look like with a Size that's not convertible to an integer? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25306

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2006-01-10 Thread chris at bubblescope dot net
--- Comment #4 from chris at bubblescope dot net 2006-01-10 17:00 --- For the record, I was thinking of: templatetypename _OutputIterator, typename _Size, typename _Tp _OutputIterator fill_n(_OutputIterator __first, _Size __n, const _Tp __value) {

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2006-01-10 Thread gdr at cs dot tamu dot edu
--- Comment #5 from gdr at cs dot tamu dot edu 2006-01-10 17:13 --- Subject: Re: fill_n, generate_n assume Size is modifiable chris at bubblescope dot net [EMAIL PROTECTED] writes: | But now I've decided thats no good, as difference_type isn't designed for | OutputIterators.

[Bug libstdc++/25306] fill_n, generate_n assume Size is modifiable

2005-12-07 Thread gdr at integrable-solutions dot net
--- Comment #1 from gdr at integrable-solutions dot net 2005-12-08 03:36 --- Subject: Re: New: fill_n, generate_n assume Size is modifiable sebor at roguewave dot com [EMAIL PROTECTED] writes: | I came across this while gathering background for my post in | c++std-lib-16112. I