Title: [146603] trunk/Source/_javascript_Core
Revision
146603
Author
[email protected]
Date
2013-03-22 06:53:37 -0700 (Fri, 22 Mar 2013)

Log Message

Revert "BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]"

This fixes a build failure introduced by this change:

    Source/_javascript_Core/API/tests/testapi.mm:206:6: error: ARC forbids explicit message send of 'dealloc'
        [super dealloc];
         ^     ~~~~~~~
    1 error generated.

Not sure why this didn't fail locally on my Mac Pro.

* API/tests/testapi.mm:
(-[TinyDOMNode dealloc]): Remove call to [super dealloc].

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/API/tests/testapi.mm (146602 => 146603)


--- trunk/Source/_javascript_Core/API/tests/testapi.mm	2013-03-22 13:46:45 UTC (rev 146602)
+++ trunk/Source/_javascript_Core/API/tests/testapi.mm	2013-03-22 13:53:37 UTC (rev 146603)
@@ -202,8 +202,6 @@
     id nextChild;
     while ((nextChild = [enumerator nextObject]))
         [[TinyDOMNode sharedVirtualMachine] removeManagedReference:nextChild withOwner:self];
-
-    [super dealloc];
 }
 
 - (void)appendChild:(TinyDOMNode *)child

Modified: trunk/Source/_javascript_Core/ChangeLog (146602 => 146603)


--- trunk/Source/_javascript_Core/ChangeLog	2013-03-22 13:46:45 UTC (rev 146602)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-03-22 13:53:37 UTC (rev 146603)
@@ -1,5 +1,21 @@
 2013-03-22  David Kilzer  <[email protected]>
 
+        Revert "BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]"
+
+        This fixes a build failure introduced by this change:
+
+            Source/_javascript_Core/API/tests/testapi.mm:206:6: error: ARC forbids explicit message send of 'dealloc'
+                [super dealloc];
+                 ^     ~~~~~~~
+            1 error generated.
+
+        Not sure why this didn't fail locally on my Mac Pro.
+
+        * API/tests/testapi.mm:
+        (-[TinyDOMNode dealloc]): Remove call to [super dealloc].
+
+2013-03-22  David Kilzer  <[email protected]>
+
         BUILD FIX (r146558): Call [super dealloc] from -[TinyDOMNode dealloc]
         <http://webkit.org/b/112608>
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to