Changeset 146599 in webkit


Ignore:
Timestamp:
Mar 22, 2013 6:35:00 AM (11 years ago)
Author:
ddkilzer@apple.com
Message:

BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]
<http://webkit.org/b/112608>

Fixes the following build failure:

Source/JavaScriptCore/API/tests/testapi.mm:205:1: error: method possibly missing a [super dealloc] call [-Werror,-Wobjc-missing-super-calls]
}

1 error generated.

  • API/tests/testapi.mm:

(-[TinyDOMNode dealloc]): Call [super dealloc].

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/API/tests/testapi.mm

    r146558 r146599  
    203203    while ((nextChild = [enumerator nextObject]))
    204204        [[TinyDOMNode sharedVirtualMachine] removeManagedReference:nextChild withOwner:self];
     205
     206    [super dealloc];
    205207}
    206208
  • trunk/Source/JavaScriptCore/ChangeLog

    r146568 r146599  
     12013-03-22  David Kilzer  <ddkilzer@apple.com>
     2
     3        BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]
     4        <http://webkit.org/b/112608>
     5
     6        Fixes the following build failure:
     7
     8            Source/JavaScriptCore/API/tests/testapi.mm:205:1: error: method possibly missing a [super dealloc] call [-Werror,-Wobjc-missing-super-calls]
     9            }
     10            ^
     11            1 error generated.
     12
     13        * API/tests/testapi.mm:
     14        (-[TinyDOMNode dealloc]): Call [super dealloc].
     15
    1162013-03-22  Ryosuke Niwa  <rniwa@webkit.org>
    217
Note: See TracChangeset for help on using the changeset viewer.