preprocessor: make PPToken inlineable.

Change-Id: Ie86b4ff4a6f1987a15fcc46e8de9db487af1729a
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-04-16 11:17:55 +02:00
committed by hjk
parent b79f13df6a
commit f5203b67c2
2 changed files with 1 additions and 4 deletions

View File

@@ -32,9 +32,6 @@ int ByteArrayRef::count(char ch) const
return num;
}
PPToken::PPToken()
{}
void PPToken::squeeze()
{
if (isValid()) {

View File

@@ -73,7 +73,7 @@ inline bool operator!=(const QByteArray &other, const ByteArrayRef &ref)
class CPLUSPLUS_EXPORT PPToken: public Token
{
public:
PPToken();
PPToken() {}
PPToken(const QByteArray &src)
: m_src(src)