Title: [121589] trunk/Source/WebCore
Revision
121589
Author
[email protected]
Date
2012-06-29 14:25:55 -0700 (Fri, 29 Jun 2012)

Log Message

Unreviewed build fix after 121580.

WebKit Linux debug bots was complaining about signed vs unsigned integer comparison.

* html/HTMLCollection.h:
(WebCore::HTMLCollectionCacheBase::HTMLCollectionCacheBase):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121588 => 121589)


--- trunk/Source/WebCore/ChangeLog	2012-06-29 21:23:14 UTC (rev 121588)
+++ trunk/Source/WebCore/ChangeLog	2012-06-29 21:25:55 UTC (rev 121589)
@@ -1,3 +1,12 @@
+2012-06-29  Shawn Singh  <[email protected]>
+
+        Unreviewed build fix after 121580.
+
+        WebKit Linux debug bots was complaining about signed vs unsigned integer comparison.
+
+        * html/HTMLCollection.h:
+        (WebCore::HTMLCollectionCacheBase::HTMLCollectionCacheBase):
+
 2012-06-28  James Robinson  <[email protected]>
 
         [chromium] Remove mapRect and mapQuad from WebTransformationMatrix

Modified: trunk/Source/WebCore/html/HTMLCollection.h (121588 => 121589)


--- trunk/Source/WebCore/html/HTMLCollection.h	2012-06-29 21:23:14 UTC (rev 121588)
+++ trunk/Source/WebCore/html/HTMLCollection.h	2012-06-29 21:25:55 UTC (rev 121589)
@@ -47,7 +47,7 @@
         , m_type(type)
         , m_includeChildren(includeChildren)
     {
-        ASSERT(m_type == type);
+        ASSERT(static_cast<CollectionType>(m_type) == type);
     }
 
     CollectionType type() const { return static_cast<CollectionType>(m_type); }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to