public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/27078]  New: Duplicate error message for ambiguous enum
@ 2006-04-08  1:52 ian at airs dot com
  2006-04-08  2:02 ` [Bug c++/27078] [4.2 Regression] " pinskia at gcc dot gnu dot org
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: ian at airs dot com @ 2006-04-08  1:52 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 920 bytes --]

This C++ file:

enum E1 { V };
namespace { enum E2 { V }; }
int foo() { return static_cast<int>(V); }

when compiled with current mainline produces a doubled error message:

foo.cc: In function ‘int foo()’:
foo.cc:3: error: reference to ‘V’ is ambiguous
foo.cc:1: error: candidates are: E1 V
foo.cc:2: error:                 <unnamed>::E2 <unnamed>::V
foo.cc:3: error: reference to ‘V’ is ambiguous
foo.cc:1: error: candidates are: E1 V
foo.cc:2: error:                 <unnamed>::E2 <unnamed>::V

This duplication is pointless and confusing.


-- 
           Summary: Duplicate error message for ambiguous enum
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: ian at airs dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.2 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
@ 2006-04-08  2:02 ` pinskia at gcc dot gnu dot org
  2006-04-08  2:04 ` [Bug c++/27078] [4.1/4.2 " pinskia at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-08  2:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-04-08 02:02 -------
Confirmed, a regression from 4.0.2 and 4.1.0


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |diagnostic
   Last reconfirmed|0000-00-00 00:00:00         |2006-04-08 02:02:44
               date|                            |
            Summary|Duplicate error message for |[4.2 Regression] Duplicate
                   |ambiguous enum              |error message for ambiguous
                   |                            |enum
   Target Milestone|---                         |4.2.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
  2006-04-08  2:02 ` [Bug c++/27078] [4.2 Regression] " pinskia at gcc dot gnu dot org
@ 2006-04-08  2:04 ` pinskia at gcc dot gnu dot org
  2006-04-08  2:04 ` pinskia at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-08  2:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-04-08 02:03 -------
I take the back it is a regression from 4.1.0, it fails there too but it does
not produce the duplicated error message in 4.0.3 though.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.1.0 4.2.0
      Known to work|                            |4.0.2
            Summary|[4.2 Regression] Duplicate  |[4.1/4.2 Regression]
                   |error message for ambiguous |Duplicate error message for
                   |enum                        |ambiguous enum
   Target Milestone|4.2.0                       |4.0.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
  2006-04-08  2:02 ` [Bug c++/27078] [4.2 Regression] " pinskia at gcc dot gnu dot org
  2006-04-08  2:04 ` [Bug c++/27078] [4.1/4.2 " pinskia at gcc dot gnu dot org
@ 2006-04-08  2:04 ` pinskia at gcc dot gnu dot org
  2006-04-16 19:20 ` mmitchel at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-08  2:04 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.4                       |4.1.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (2 preceding siblings ...)
  2006-04-08  2:04 ` pinskia at gcc dot gnu dot org
@ 2006-04-16 19:20 ` mmitchel at gcc dot gnu dot org
  2006-05-25  2:40 ` mmitchel at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-04-16 19:20 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (3 preceding siblings ...)
  2006-04-16 19:20 ` mmitchel at gcc dot gnu dot org
@ 2006-05-25  2:40 ` mmitchel at gcc dot gnu dot org
  2006-08-25 13:25 ` shinwell at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-25  2:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from mmitchel at gcc dot gnu dot org  2006-05-25 02:34 -------
Will not be fixed in 4.1.1; adjust target milestone to 4.1.2.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.1                       |4.1.2


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (4 preceding siblings ...)
  2006-05-25  2:40 ` mmitchel at gcc dot gnu dot org
@ 2006-08-25 13:25 ` shinwell at gcc dot gnu dot org
  2007-02-14  9:10 ` [Bug c++/27078] [4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: shinwell at gcc dot gnu dot org @ 2006-08-25 13:25 UTC (permalink / raw)
  To: gcc-bugs



-- 

shinwell at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |shinwell at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-04-08 02:02:44         |2006-08-25 13:25:47
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2/4.3 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (5 preceding siblings ...)
  2006-08-25 13:25 ` shinwell at gcc dot gnu dot org
@ 2007-02-14  9:10 ` mmitchel at gcc dot gnu dot org
  2007-05-31 21:18 ` aaw at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-02-14  9:10 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.2                       |4.1.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2/4.3 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (6 preceding siblings ...)
  2007-02-14  9:10 ` [Bug c++/27078] [4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
@ 2007-05-31 21:18 ` aaw at gcc dot gnu dot org
  2007-06-01  7:05 ` patchapp at dberlin dot org
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: aaw at gcc dot gnu dot org @ 2007-05-31 21:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from aaw at gcc dot gnu dot org  2007-05-31 21:18 -------
I've got a fix to this as part of my using directive / using declaration
cleanup.  I'll disentangle this from the rest of my changes and submit a patch
soonish.


-- 

aaw at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|shinwell at gcc dot gnu dot |aaw at gcc dot gnu dot org
                   |org                         |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2/4.3 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (7 preceding siblings ...)
  2007-05-31 21:18 ` aaw at gcc dot gnu dot org
@ 2007-06-01  7:05 ` patchapp at dberlin dot org
  2007-06-02  1:03 ` patchapp at dberlin dot org
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: patchapp at dberlin dot org @ 2007-06-01  7:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from patchapp at dberlin dot org  2007-06-01 07:05 -------
Subject: Bug number PR 27078

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2007-06/msg00008.html


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2/4.3 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (8 preceding siblings ...)
  2007-06-01  7:05 ` patchapp at dberlin dot org
@ 2007-06-02  1:03 ` patchapp at dberlin dot org
  2007-12-21  7:30 ` steven at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: patchapp at dberlin dot org @ 2007-06-02  1:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from patchapp at dberlin dot org  2007-06-02 01:03 -------
Subject: Bug number PR 27078

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2007-06/msg00076.html


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.1/4.2/4.3 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (9 preceding siblings ...)
  2007-06-02  1:03 ` patchapp at dberlin dot org
@ 2007-12-21  7:30 ` steven at gcc dot gnu dot org
  2008-07-04 21:21 ` [Bug c++/27078] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2007-12-21  7:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from steven at gcc dot gnu dot org  2007-12-21 07:30 -------
Ollie, ping?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.2/4.3/4.4 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (10 preceding siblings ...)
  2007-12-21  7:30 ` steven at gcc dot gnu dot org
@ 2008-07-04 21:21 ` jsm28 at gcc dot gnu dot org
  2009-01-31 15:21 ` bonzini at gnu dot org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-07-04 21:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jsm28 at gcc dot gnu dot org  2008-07-04 21:20 -------
Closing 4.1 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.1/4.2/4.3/4.4 Regression]|[4.2/4.3/4.4 Regression]
                   |Duplicate error message for |Duplicate error message for
                   |ambiguous enum              |ambiguous enum
   Target Milestone|4.1.3                       |4.2.5


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.2/4.3/4.4 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (11 preceding siblings ...)
  2008-07-04 21:21 ` [Bug c++/27078] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
@ 2009-01-31 15:21 ` bonzini at gnu dot org
  2009-02-02 19:13 ` aaw at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: bonzini at gnu dot org @ 2009-01-31 15:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from bonzini at gnu dot org  2009-01-31 15:20 -------
PING?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.2/4.3/4.4 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (12 preceding siblings ...)
  2009-01-31 15:21 ` bonzini at gnu dot org
@ 2009-02-02 19:13 ` aaw at gcc dot gnu dot org
  2009-03-31 19:34 ` [Bug c++/27078] [4.3/4.4/4.5 " jsm28 at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: aaw at gcc dot gnu dot org @ 2009-02-02 19:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from aaw at gcc dot gnu dot org  2009-02-02 19:13 -------
There were problems with my original patch (Sadly, I don't recall the
details.).  I haven't looked at this in a while and am unlikely to do so soon. 
If someone else wants to look at this, please feel free to do so.


-- 

aaw at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|aaw at gcc dot gnu dot org  |unassigned at gcc dot gnu
                   |                            |dot org
             Status|ASSIGNED                    |NEW


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.3/4.4/4.5 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (13 preceding siblings ...)
  2009-02-02 19:13 ` aaw at gcc dot gnu dot org
@ 2009-03-31 19:34 ` jsm28 at gcc dot gnu dot org
  2009-08-04 12:33 ` rguenth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2009-03-31 19:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from jsm28 at gcc dot gnu dot org  2009-03-31 19:34 -------
Closing 4.2 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.2/4.3/4.4/4.5 Regression]|[4.3/4.4/4.5 Regression]
                   |Duplicate error message for |Duplicate error message for
                   |ambiguous enum              |ambiguous enum
   Target Milestone|4.2.5                       |4.3.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.3/4.4/4.5 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (14 preceding siblings ...)
  2009-03-31 19:34 ` [Bug c++/27078] [4.3/4.4/4.5 " jsm28 at gcc dot gnu dot org
@ 2009-08-04 12:33 ` rguenth at gcc dot gnu dot org
  2009-11-12 23:31 ` jason at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-08-04 12:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from rguenth at gcc dot gnu dot org  2009-08-04 12:27 -------
GCC 4.3.4 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.4                       |4.3.5


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.3/4.4/4.5 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (15 preceding siblings ...)
  2009-08-04 12:33 ` rguenth at gcc dot gnu dot org
@ 2009-11-12 23:31 ` jason at gcc dot gnu dot org
  2009-11-13  2:21 ` jason at gcc dot gnu dot org
  2009-11-13  2:22 ` jason at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-11-12 23:31 UTC (permalink / raw)
  To: gcc-bugs



-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jason at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2007-08-06 15:14:28         |2009-11-12 23:31:01
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.3/4.4/4.5 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (16 preceding siblings ...)
  2009-11-12 23:31 ` jason at gcc dot gnu dot org
@ 2009-11-13  2:21 ` jason at gcc dot gnu dot org
  2009-11-13  2:22 ` jason at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-11-13  2:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from jason at gcc dot gnu dot org  2009-11-13 02:20 -------
Subject: Bug 27078

Author: jason
Date: Fri Nov 13 02:20:41 2009
New Revision: 154139

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154139
Log:
        PR c++/27078
        * parser.c (cp_parser_primary_expression): Don't give a duplicate
        ambiguity error.

Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/parser.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

* [Bug c++/27078] [4.3/4.4/4.5 Regression] Duplicate error message for ambiguous enum
  2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
                   ` (17 preceding siblings ...)
  2009-11-13  2:21 ` jason at gcc dot gnu dot org
@ 2009-11-13  2:22 ` jason at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-11-13  2:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from jason at gcc dot gnu dot org  2009-11-13 02:21 -------
Fixed for 4.5.


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.3.5                       |4.5.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27078


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

end of thread, other threads:[~2009-11-13  2:22 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-04-08  1:52 [Bug c++/27078] New: Duplicate error message for ambiguous enum ian at airs dot com
2006-04-08  2:02 ` [Bug c++/27078] [4.2 Regression] " pinskia at gcc dot gnu dot org
2006-04-08  2:04 ` [Bug c++/27078] [4.1/4.2 " pinskia at gcc dot gnu dot org
2006-04-08  2:04 ` pinskia at gcc dot gnu dot org
2006-04-16 19:20 ` mmitchel at gcc dot gnu dot org
2006-05-25  2:40 ` mmitchel at gcc dot gnu dot org
2006-08-25 13:25 ` shinwell at gcc dot gnu dot org
2007-02-14  9:10 ` [Bug c++/27078] [4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
2007-05-31 21:18 ` aaw at gcc dot gnu dot org
2007-06-01  7:05 ` patchapp at dberlin dot org
2007-06-02  1:03 ` patchapp at dberlin dot org
2007-12-21  7:30 ` steven at gcc dot gnu dot org
2008-07-04 21:21 ` [Bug c++/27078] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
2009-01-31 15:21 ` bonzini at gnu dot org
2009-02-02 19:13 ` aaw at gcc dot gnu dot org
2009-03-31 19:34 ` [Bug c++/27078] [4.3/4.4/4.5 " jsm28 at gcc dot gnu dot org
2009-08-04 12:33 ` rguenth at gcc dot gnu dot org
2009-11-12 23:31 ` jason at gcc dot gnu dot org
2009-11-13  2:21 ` jason at gcc dot gnu dot org
2009-11-13  2:22 ` jason at gcc dot gnu dot org

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).