public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/4927: Internal Compiler Error by not stating template's parameter
@ 2001-11-18 16:56 lerdsuwa
  0 siblings, 0 replies; 3+ messages in thread
From: lerdsuwa @ 2001-11-18 16:56 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/4927; it has been noted by GNATS.

From: lerdsuwa@gcc.gnu.org
To: gcc-bugs@gcc.gnu.org, gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org,
  nobody@gcc.gnu.org, petridis@iit.demokritos.gr
Cc:  
Subject: Re: c++/4927: Internal Compiler Error by not stating template's parameter
Date: 22 Nov 2001 14:56:06 -0000

 Synopsis: Internal Compiler Error by not stating template's parameter
 
 State-Changed-From-To: open->closed
 State-Changed-By: lerdsuwa
 State-Changed-When: Thu Nov 22 06:56:05 2001
 State-Changed-Why:
     Fixed in the main trunk.
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=4927&database=gcc


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: c++/4927: Internal Compiler Error by not stating template's parameter
@ 2001-11-18 16:56 lerdsuwa
  0 siblings, 0 replies; 3+ messages in thread
From: lerdsuwa @ 2001-11-18 16:56 UTC (permalink / raw)
  To: gcc-bugs, gcc-gnats, gcc-prs, nobody, petridis

Synopsis: Internal Compiler Error by not stating template's parameter

State-Changed-From-To: open->closed
State-Changed-By: lerdsuwa
State-Changed-When: Thu Nov 22 06:56:05 2001
State-Changed-Why:
    Fixed in the main trunk.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=4927&database=gcc


^ permalink raw reply	[flat|nested] 3+ messages in thread

* c++/4927: Internal Compiler Error by not stating template's parameter
@ 2001-11-18 16:16 petridis
  0 siblings, 0 replies; 3+ messages in thread
From: petridis @ 2001-11-18 16:16 UTC (permalink / raw)
  To: gcc-gnats


>Number:         4927
>Category:       c++
>Synopsis:       Internal Compiler Error by not stating template's parameter
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    unassigned
>State:          open
>Class:          ice-on-illegal-code
>Submitter-Id:   net
>Arrival-Date:   Thu Nov 22 02:46:08 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Sergios Petridis
>Release:        gcc  version 3
>Organization:
>Environment:
cygwin
>Description:
During a constructor's body, not referencing the template parameter of parent's class caused a Segmentation fault
>How-To-Repeat:
template<class T>
class SquareMatrix : public TNT::Matrix<T>
{
  public :

    SquareMatrix( int i )
      : TNT::Matrix( i, i )
     {};
};
>Fix:
template<class T>
class SquareMatrix : public TNT::Matrix<T>
{
  public :

    SquareMatrix( int i )
      : TNT::Matrix<T>( i, i )
>Release-Note:
>Audit-Trail:
>Unformatted:


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-11-22 15:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-18 16:56 c++/4927: Internal Compiler Error by not stating template's parameter lerdsuwa
  -- strict thread matches above, loose matches on Subject: below --
2001-11-18 16:56 lerdsuwa
2001-11-18 16:16 petridis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).