Title: [184770] trunk/Source/WebCore
Revision
184770
Author
za...@apple.com
Date
2015-05-22 09:31:50 -0700 (Fri, 22 May 2015)

Log Message

Unreviewed build fix for ENABLE(TREE_DEBUGGING)

* editing/VisibleSelection.h:
* html/parser/HTMLElementStack.h:
* html/parser/HTMLFormattingElementList.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (184769 => 184770)


--- trunk/Source/WebCore/ChangeLog	2015-05-22 15:52:38 UTC (rev 184769)
+++ trunk/Source/WebCore/ChangeLog	2015-05-22 16:31:50 UTC (rev 184770)
@@ -1,3 +1,11 @@
+2015-05-22  Zalan Bujtas  <za...@apple.com>
+
+        Unreviewed build fix for ENABLE(TREE_DEBUGGING)
+
+        * editing/VisibleSelection.h:
+        * html/parser/HTMLElementStack.h:
+        * html/parser/HTMLFormattingElementList.h:
+
 2015-05-22  Joanmarie Diggs  <jdi...@igalia.com>
 
         AX: Figure out why list-detection2.html test fails on GTK

Modified: trunk/Source/WebCore/editing/VisibleSelection.h (184769 => 184770)


--- trunk/Source/WebCore/editing/VisibleSelection.h	2015-05-22 15:52:38 UTC (rev 184769)
+++ trunk/Source/WebCore/editing/VisibleSelection.h	2015-05-22 16:31:50 UTC (rev 184770)
@@ -156,7 +156,7 @@
 
 } // namespace WebCore
 
-#ifndef NDEBUG
+#if ENABLE(TREE_DEBUGGING)
 // Outside the WebCore namespace for ease of invocation from gdb.
 void showTree(const WebCore::VisibleSelection&);
 void showTree(const WebCore::VisibleSelection*);

Modified: trunk/Source/WebCore/html/parser/HTMLElementStack.h (184769 => 184770)


--- trunk/Source/WebCore/html/parser/HTMLElementStack.h	2015-05-22 15:52:38 UTC (rev 184769)
+++ trunk/Source/WebCore/html/parser/HTMLElementStack.h	2015-05-22 16:31:50 UTC (rev 184770)
@@ -156,7 +156,7 @@
 
     ContainerNode& rootNode() const;
 
-#ifndef NDEBUG
+#if ENABLE(TREE_DEBUGGING)
     void show();
 #endif
 

Modified: trunk/Source/WebCore/html/parser/HTMLFormattingElementList.h (184769 => 184770)


--- trunk/Source/WebCore/html/parser/HTMLFormattingElementList.h	2015-05-22 15:52:38 UTC (rev 184769)
+++ trunk/Source/WebCore/html/parser/HTMLFormattingElementList.h	2015-05-22 16:31:50 UTC (rev 184770)
@@ -121,7 +121,7 @@
     const Entry& at(size_t i) const { return m_entries[i]; }
     Entry& at(size_t i) { return m_entries[i]; }
 
-#ifndef NDEBUG
+#if ENABLE(TREE_DEBUGGING)
     void show();
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to