This is the mail archive of the gcc@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]

Re: egcs-1.1.1 on Solaris2.6 bug?


Philipp Rumpf wrote:
> 
> On Sat, Dec 05, 1998 at 12:15:19AM -0800, Igor Markov wrote:
> >   The first package that I tried to compile on Solaris2.6 w egcs-1.1.1
> >   gives errors. It complains about the overloaded function
> >
> > template <class Sequence>
> > void  deleteAllPointersIn(Sequence& s)
> > {
> >    for (Sequence::iterator it=s.begin();it!=s.end();it++)
> >    delete *it;
> > }
> >
> >    and the error message ---  parse error before `='
> 
> Could you try to split the for construct to see which '=' it is the compiler
> complains about ? Looks like a bug in the token splitting of it!=s.end() to
> me ...

  it appears to stumble at the first one:

abktempl.h
     52 template <class Sequence>
     53 void  deleteAllPointersIn(Sequence& s)
     54 {
     55    for (Sequence::iterator it=s.begin();
     56            it!=s.end();it++)
     57    delete *it;
     58 }

abktempl.h:55: parse error before `='
----------------------

  Another bug situation is that I am getting weird messages 
  from egcs-help@cygnus.com with subject   "ezmlm response"
  which say

   Hi! This is the ezmlm program. I'm managing the
   egcs@egcs.cygnus.com mailing list.

   This is a generic help message. The message I received wasn't sent to
   any of my command addresses.

   --- Administrative commands for the egcs list ---
  ...

   >>> but my messages seem to get to some lists -- I am getting
       responses <<<

   please cc: imarkov@ucla.edu

-- 
								Igor
--------------------------------------------------------------------
What should you do if you see an endangered animal eating an 
endangered plant?


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