From 42e34d6cd27718990805de1f4387f36929df0581 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Thu, 29 Jul 2010 14:14:29 +0200 Subject: Removed debug output. --- src/shared/cplusplus/Parser.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/shared/cplusplus/Parser.cpp') diff --git a/src/shared/cplusplus/Parser.cpp b/src/shared/cplusplus/Parser.cpp index ffb9d46976..663fc6d8b2 100644 --- a/src/shared/cplusplus/Parser.cpp +++ b/src/shared/cplusplus/Parser.cpp @@ -3417,9 +3417,7 @@ bool Parser::parseBuiltinTypeSpecifier(SpecifierListAST *&node) node = new (_pool) SpecifierListAST(ast); return true; } - printf("typeof: before rewind, token ahead: %s (%d)\n", tok().spell(), cursor()); rewind(lparen_token); - printf("typeof: after rewind, token ahead: %s (%d)\n", tok().spell(), cursor()); } parseUnaryExpression(ast->expression); node = new (_pool) SpecifierListAST(ast); @@ -4414,9 +4412,7 @@ bool Parser::parseUnaryExpression(ExpressionAST *&node) node = ast; return true; } else { - printf("sizeof: before rewind, token ahead: %s\n", tok().spell()); rewind(lparen_token); - printf("sizeof: after rewind, token ahead: %s\n", tok().spell()); } } -- cgit v1.2.1