Changeset 184854 in webkit


Ignore:
Timestamp:
May 25, 2015 10:20:07 PM (9 years ago)
Author:
mitz@apple.com
Message:

Fixed a failing bindings test after r184853.

  • bindings/scripts/CodeGeneratorObjC.pm:

(GenerateImplementation): Removed an extraneous semicolon.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r184853 r184854  
     12015-05-25  Dan Bernstein  <mitz@apple.com>
     2
     3        Fixed a failing bindings test after r184853.
     4
     5        * bindings/scripts/CodeGeneratorObjC.pm:
     6        (GenerateImplementation): Removed an extraneous semicolon.
     7
    182015-05-25  Dan Bernstein  <mitz@apple.com>
    29
  • trunk/Source/WebCore/bindings/scripts/CodeGeneratorObjC.pm

    r184853 r184854  
    16971697        push(@implContent, "$className *kit($implType* value)\n");
    16981698        push(@implContent, "{\n");
    1699         push(@implContent, "    $threadViolationCheck;\n");
     1699        push(@implContent, "    $threadViolationCheck\n");
    17001700        push(@implContent, "    return static_cast<$className*>(kit(static_cast<WebCore::$baseClass*>(value)));\n");
    17011701        push(@implContent, "}\n");
Note: See TracChangeset for help on using the changeset viewer.