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

Commit cc61802b authored by Joe Onorato's avatar Joe Onorato Committed by Android Git Automerger
Browse files

am ecfd8e73: acc error tweaks

Merge commit 'ecfd8e73' into eclair-plus-aosp

* commit 'ecfd8e73':
  acc error tweaks
parents 9b158910 ecfd8e73
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3837,7 +3837,7 @@ class Compiler : public ErrorSink {

    void assertImpl(bool isTrue, int line) {
        if (!isTrue) {
            LOGD("assertion failed at line %s:%d.", __FILE__, line);
            LOGD("%d: assertion failed at line %s:%d.", mLineNumber, __FILE__, line);
            internalError();
        }
    }
@@ -5220,7 +5220,6 @@ class Compiler : public ErrorSink {
            String temp;
            decodeToken(temp, tok, true);
            error("Expected name. Got %s", temp.getUnwrapped());
            assert(false);
            reportFailure = true;
        }
        for(;;) {