On Fri, Jul 12, 2013 at 08:38:50PM -0000, Richard Smith wrote:
> Log:
> Unrevert r186040, reverted in r186185, with fix for PR16597.

This breaks the Qt build. Test case is attached.

Joerg
class Qt
{
    enum RasterOp
    { CopyROP };
    friend void bitBlt (Qt::RasterOp, bool);
};
class QImage
{
    QImage copy () const;
    friend void bitBlt (const QImage *);
};
void bitBlt (Qt::RasterOp = Qt::CopyROP, bool = 0);
class A:Qt
{
    friend void bitBlt (RasterOp, bool);
};
QImage
QImage::copy () const const const
{
    bitBlt (this);
}
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to