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]

Internal compiler error 980711


I got this error (Internal compiler error 980711) when compiling a simple 
class.  It appears to be the use of std::queue<> when the include file 
<queue> had not been included.

I've simplfied the program down to 4 lines and I can still reproduce it:
---------------------------cut here----------------------------------
class SerialStream
{
	std::queue<int*> q;
};
---------------------------cut here----------------------------------

Version stuff:

GNU C++ version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release) 
(i386-redhat-linux) compiled by GNU C version egcs-2.91.66 19990314/Linux 
(egcs-1.1.2 release).

actual error message:

tstie.cpp:3: Internal compiler error 980711.
class SerialStream
{
	std::queue<int*> q;
};

--
Andy Henson		arh@evsw.co.uk
Every Software Ltd	www.everysoftware.co.uk

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