Replaced T_INT_LITERAL and T_FLOAT_LITERAL with T_NUMERIC_LITERAL.

This commit is contained in:
Roberto Raggi
2009-07-10 15:44:47 +02:00
parent 017d865330
commit 3e54a65a69
7 changed files with 12 additions and 14 deletions

View File

@@ -240,7 +240,7 @@ protected:
bool process_primary()
{
if ((*_lex)->is(T_INT_LITERAL)) {
if ((*_lex)->is(T_NUMERIC_LITERAL)) {
int base = 10;
const QByteArray spell = tokenSpell();
if (spell.at(0) == '0') {