This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Internal error (using explicit std::)
- To: dennisb at cs dot chalmers dot se
- Subject: Re: Internal error (using explicit std::)
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Sun, 27 Feb 2000 20:30:45 +0100
- CC: gcc-bugs at gcc dot gnu dot org
- References: <Pine.SOL.4.21.0002261638160.18184-102000@muppet17.cs.chalmers.se>
> #include <vector>
>
> int main( void )
> {
> std::vector<int> v;
>
> v.std::push_back(1);
>
> return 0;
> }
Thanks for your bug report. The mainline compiler (2.96 20000223
(experimental)) says
a.cc: In function `int main ()':
a.cc:7: `std' is not an aggregate type
so the bug has been fixed.
Regards,
Martin