This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

egcs 1.1.2 bug report


/*
   Compile with egcs-2.91.66 on RedHat 5.2 Linux (i386) with "g++
bug.C" (egcs 1.1.2):

   bug.C: In method `void
basic_string<_CharT,_Traits,_Alloc>::_M_range_initialize(_InputIter,
_InputIter)':
   bug.C:16: Internal compiler error 980711.
   bug.C:16: Please submit a full bug report to
`egcs-bugs@egcs.cygnus.com'.
   bug.C:16: See <URL:http://egcs.cygnus.com/faq.html#bugreport> for
details.

 */

template <class _CharT, class _Traits, class _Alloc> 
class basic_string {
public:
  template <class _InputIter>
  void _M_range_initialize(_InputIter __f, _InputIter __l) {
    typedef  std ::iterator_traits<_InputIter> _Iter_traits;
    typedef typename _Iter_traits::iterator_category _Category;
    _M_range_initialize(__f, __l, _Category());
  }
};

_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]