AW: G++ Bug with option -pedantic
Kanze, James
James.Kanze@Dresdner-Bank.com
Wed May 10 05:49:00 GMT 2000
|> Thanks for your bug report. I believe there is indeed an
|> error in your
|> code.
|> > vci.cc:22: parse error before `='
|> This line reads
|> std::vector< T >::const_iterator src = other.begin() ;
|> Since std::vector<T> is a dependent name, const_iterator is taken as
|> an expression here. Since you want it to be a type, you have to write
|> typename std::vector< T >::const_iterator src = other.begin() ;
Sorry about that -- I'd forgotten about typename. And since the code
had worked with older versions (and other compilers), I didn't look
very far.
Thanks for taking the time to look at it.
--
James Kanze mailto:kanze@gabi-soft.de
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
Ziegelhüttenweg 17a, 60598 Frankfurt, Germany Tel. +49(069)63198627
More information about the Gcc-bugs
mailing list