http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55817

Daniel Krügler <daniel.kruegler at googlemail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel.kruegler at
                   |                            |googlemail dot com

--- Comment #2 from Daniel Krügler <daniel.kruegler at googlemail dot com> 
2013-01-07 22:54:45 UTC ---
The same problem seems to exist for gcc 4.8.0 20121209 and for the signatures

void insert(iterator __position, initializer_list<value_type> __l)

(should be:

iterator insert(iterator __position, initializer_list<value_type> __l)
)

void insert(iterator __position, size_type __n, const value_type& __x)

(should be:

iterator insert(iterator __position, size_type __n, const value_type& __x)
)

template<typename _InputIterator,
           typename = std::_RequireInputIter<_InputIterator>>
void insert(iterator __position, _InputIterator __first,
           _InputIterator __last)

(should be:

template<typename _InputIterator,
           typename = std::_RequireInputIter<_InputIterator>>
iterator insert(iterator __position, _InputIterator __first,
           _InputIterator __last)
)

Reply via email to