Commit 3f53cdbe by H.J. Lu

Add the missing g++.dg/torture/pr40492.C.

From-SVN: r148796
parent 8e6e7620
typedef unsigned short ushort;
class QChar {
public:
QChar( const QChar& c );
ushort ucs;
};
inline QChar::QChar( const QChar& c ) : ucs( c.ucs ) { };
class QString { };
class KoAutoFormat {
public:
struct TypographicQuotes { QChar begin, end; };
TypographicQuotes getConfigTypographicDoubleQuotes() const {
return m_typographicDoubleQuotes;
}
TypographicQuotes m_typographicDoubleQuotes;
};
class KoAutoFormatDia {
QChar oDoubleBegin, oDoubleEnd;
KoAutoFormat * m_docAutoFormat;
bool noSignal;
void changeAutoformatLanguage(void);
};
void KoAutoFormatDia::changeAutoformatLanguage(void)
{
oDoubleEnd= m_docAutoFormat->getConfigTypographicDoubleQuotes().end;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment