Title: [181706] trunk/Source/WebCore
Revision
181706
Author
[email protected]
Date
2015-03-18 12:07:30 -0700 (Wed, 18 Mar 2015)

Log Message

Temporarily fix the !ENABLE(CSS_SELECTOR_JIT) and assertions-enabled build

* dom/SelectorQuery.cpp:
(WebCore::SelectorDataList::execute):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (181705 => 181706)


--- trunk/Source/WebCore/ChangeLog	2015-03-18 18:40:48 UTC (rev 181705)
+++ trunk/Source/WebCore/ChangeLog	2015-03-18 19:07:30 UTC (rev 181706)
@@ -1,3 +1,10 @@
+2015-03-18  Tim Horton  <[email protected]>
+
+        Temporarily fix the !ENABLE(CSS_SELECTOR_JIT) and assertions-enabled build
+
+        * dom/SelectorQuery.cpp:
+        (WebCore::SelectorDataList::execute):
+
 2015-03-18  Myles C. Maxfield  <[email protected]>
 
         Call CTFontSetRenderingParameters before rendering text

Modified: trunk/Source/WebCore/dom/SelectorQuery.cpp (181705 => 181706)


--- trunk/Source/WebCore/dom/SelectorQuery.cpp	2015-03-18 18:40:48 UTC (rev 181705)
+++ trunk/Source/WebCore/dom/SelectorQuery.cpp	2015-03-18 19:07:30 UTC (rev 181706)
@@ -555,7 +555,9 @@
 #else
     case CompiledSingleWithRootFilter:
     case CompiledSingle:
-        ASSERT_NOT_REACHED();
+        // FIXME: ASSERT_NOT_REACHED and FALLTHROUGH combine to "error: fallthrough annotation in unreachable code"
+        // We should figure out what should really happen here and put the ASSERT back.
+        // ASSERT_NOT_REACHED();
         FALLTHROUGH;
 #endif // ENABLE(CSS_SELECTOR_JIT)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to