URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [overload/] [ambig2.C] - Rev 12
Compare with Previous | Blame | View Log
// Bug: g++ thought that the QChar overload was a viable but ambiguous
// candidate. It isn't viable, because there's no conversion from const
// char * to QChar.
class QChar {
public:
QChar( char c );
QChar( unsigned char c );
};
class QString
{
public:
QString( const char *str ); // deep copy
QString &insert( unsigned int index, const QString & );
QString &insert( unsigned int index, QChar );
QString &prepend( const char* );
};
inline QString &QString::prepend( const char* s )
{ return insert(0,s); }