Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ecc5556 authored by Jack Palevich's avatar Jack Palevich
Browse files

Remove unused variable.

parent 5e525099
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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();