Title: [182169] trunk/Source/WebCore
Revision
182169
Author
[email protected]
Date
2015-03-30 18:09:08 -0700 (Mon, 30 Mar 2015)

Log Message

Unreviewed build fix after r182168.

* contentextensions/ContentExtensionsBackend.cpp:
(WebCore::ContentExtensions::ContentExtensionsBackend::actionsForResourceLoad):
Explicitly cast to unsigned.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (182168 => 182169)


--- trunk/Source/WebCore/ChangeLog	2015-03-31 00:48:30 UTC (rev 182168)
+++ trunk/Source/WebCore/ChangeLog	2015-03-31 01:09:08 UTC (rev 182169)
@@ -1,5 +1,13 @@
 2015-03-30  Alex Christensen  <[email protected]>
 
+        Unreviewed build fix after r182168.
+
+        * contentextensions/ContentExtensionsBackend.cpp:
+        (WebCore::ContentExtensions::ContentExtensionsBackend::actionsForResourceLoad):
+        Explicitly cast to unsigned.
+
+2015-03-30  Alex Christensen  <[email protected]>
+
         [Content Extensions] Correctly handle regular expressions matching everything
         https://bugs.webkit.org/show_bug.cgi?id=143235
 

Modified: trunk/Source/WebCore/contentextensions/ContentExtensionsBackend.cpp (182168 => 182169)


--- trunk/Source/WebCore/contentextensions/ContentExtensionsBackend.cpp	2015-03-31 00:48:30 UTC (rev 182168)
+++ trunk/Source/WebCore/contentextensions/ContentExtensionsBackend.cpp	2015-03-31 01:09:08 UTC (rev 182169)
@@ -107,7 +107,7 @@
         if (!sawIgnorePreviousRules) {
             DFABytecodeInterpreter::Actions universalActions = interpreter.actionsFromDFARoot();
             for (auto actionLocation : universalActions) {
-                Action action = "" actionsLength, actionLocation);
+                Action action = "" actionsLength, static_cast<unsigned>(actionLocation));
                 
                 // CSS selectors were already compiled into a stylesheet using globalDisplayNoneSelectors.
                 if (action.type() != ActionType::CSSDisplayNoneSelector)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to