Remove unused variable.

This commit is contained in:
Jack Palevich 2009-07-14 16:24:55 -07:00
parent 5e525099af
commit 7ecc5556ae
1 changed files with 1 additions and 2 deletions

View File

@ -3976,7 +3976,7 @@ class Compiler : public ErrorSink {
/* Recursive descent parser for binary operations.
*/
void binaryOp(int level) {
intptr_t t, n, a;
intptr_t t, a;
t = 0;
if (level-- == 1)
unary(true);
@ -3984,7 +3984,6 @@ class Compiler : public ErrorSink {
binaryOp(level);
a = 0;
while (level == tokl) {
n = tok;
t = tokc;
next();