public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/34111]  New: new oveload resolution error
@ 2007-11-15 16:54 mueller at gcc dot gnu dot org
  2007-11-15 16:55 ` [Bug c++/34111] " mueller at gcc dot gnu dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: mueller at gcc dot gnu dot org @ 2007-11-15 16:54 UTC (permalink / raw)
  To: gcc-bugs

this used to work a few days ago still:


-- 
           Summary: new oveload resolution error
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: mueller at gcc dot gnu dot org


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


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

* [Bug c++/34111] new oveload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
@ 2007-11-15 16:55 ` mueller at gcc dot gnu dot org
  2007-11-15 23:18 ` [Bug c++/34111] new overload " mueller at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mueller at gcc dot gnu dot org @ 2007-11-15 16:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from mueller at gcc dot gnu dot org  2007-11-15 16:55 -------
Created an attachment (id=14559)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14559&action=view)
the preprocessed source

.ii file


-- 


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


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

* [Bug c++/34111] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
  2007-11-15 16:55 ` [Bug c++/34111] " mueller at gcc dot gnu dot org
@ 2007-11-15 23:18 ` mueller at gcc dot gnu dot org
  2007-11-16  9:47 ` [Bug c++/34111] [4.3 Regression] " rguenth at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mueller at gcc dot gnu dot org @ 2007-11-15 23:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from mueller at gcc dot gnu dot org  2007-11-15 23:17 -------
reduced testcase:

class QChar
{
};
struct QString
{
  QString(QChar);
};
struct QPainter
{
  void drawText (int x, int y, const QString &);
};

  class KHEChar:public QChar
  {
  public:KHEChar (QChar C);
  };

void
drawByte (QPainter * P, char, KHEChar B)
{
  P->drawText (0, 0, B);
}


-- 

mueller at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-11-15 23:17:52
               date|                            |


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
  2007-11-15 16:55 ` [Bug c++/34111] " mueller at gcc dot gnu dot org
  2007-11-15 23:18 ` [Bug c++/34111] new overload " mueller at gcc dot gnu dot org
@ 2007-11-16  9:47 ` rguenth at gcc dot gnu dot org
  2007-11-16 16:59 ` jakub at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-11-16  9:47 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|new overload resolution     |[4.3 Regression] new
                   |error                       |overload resolution error
   Target Milestone|---                         |4.3.0


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-11-16  9:47 ` [Bug c++/34111] [4.3 Regression] " rguenth at gcc dot gnu dot org
@ 2007-11-16 16:59 ` jakub at gcc dot gnu dot org
  2007-11-27 21:59 ` mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-11-16 16:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jakub at gcc dot gnu dot org  2007-11-16 16:58 -------
Introduced by
http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=129596


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu dot org


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2007-11-16 16:59 ` jakub at gcc dot gnu dot org
@ 2007-11-27 21:59 ` mmitchel at gcc dot gnu dot org
  2007-12-18 22:45 ` jason at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-11-27 21:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from mmitchel at gcc dot gnu dot org  2007-11-27 21:59 -------
Jason, would you please take a look at this issue?

Thanks,

-- Mark


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2007-11-27 21:59 ` mmitchel at gcc dot gnu dot org
@ 2007-12-18 22:45 ` jason at gcc dot gnu dot org
  2007-12-20 22:16 ` jason at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-12-18 22:45 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-11-15 23:17:52         |2007-12-18 22:45:05
               date|                            |


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2007-12-18 22:45 ` jason at gcc dot gnu dot org
@ 2007-12-20 22:16 ` jason at gcc dot gnu dot org
  2007-12-20 23:13 ` jakub at gcc dot gnu dot org
  2007-12-21  4:10 ` jason at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-12-20 22:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jason at gcc dot gnu dot org  2007-12-20 22:16 -------
Subject: Bug 34111

Author: jason
Date: Thu Dec 20 22:16:19 2007
New Revision: 131107

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131107
Log:
        PR c++/34111
        * call.c (standard_conversion): Derived-to-base is considered a
        standard conversion.

Added:
    trunk/gcc/testsuite/g++.dg/overload/arg5.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/call.c


-- 


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2007-12-20 22:16 ` jason at gcc dot gnu dot org
@ 2007-12-20 23:13 ` jakub at gcc dot gnu dot org
  2007-12-21  4:10 ` jason at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-12-20 23:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jakub at gcc dot gnu dot org  2007-12-20 23:13 -------
Can we close this now, or do you want to keep it around until you get core
feedback?


-- 


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


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

* [Bug c++/34111] [4.3 Regression] new overload resolution error
  2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2007-12-20 23:13 ` jakub at gcc dot gnu dot org
@ 2007-12-21  4:10 ` jason at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-12-21  4:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jason at gcc dot gnu dot org  2007-12-21 04:10 -------
We can close it.  The core feedback I'm interested in is about the testcase for
Bug 17431, not this one.


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2007-12-21  4:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-15 16:54 [Bug c++/34111] New: new oveload resolution error mueller at gcc dot gnu dot org
2007-11-15 16:55 ` [Bug c++/34111] " mueller at gcc dot gnu dot org
2007-11-15 23:18 ` [Bug c++/34111] new overload " mueller at gcc dot gnu dot org
2007-11-16  9:47 ` [Bug c++/34111] [4.3 Regression] " rguenth at gcc dot gnu dot org
2007-11-16 16:59 ` jakub at gcc dot gnu dot org
2007-11-27 21:59 ` mmitchel at gcc dot gnu dot org
2007-12-18 22:45 ` jason at gcc dot gnu dot org
2007-12-20 22:16 ` jason at gcc dot gnu dot org
2007-12-20 23:13 ` jakub at gcc dot gnu dot org
2007-12-21  4:10 ` 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).