From 8f6a7934290f66cc3689d55136e860a3f0cef105 Mon Sep 17 00:00:00 2001 From: "shawnsingh@chromium.org" Date: Fri, 29 Jun 2012 21:25:55 +0000 Subject: [PATCH] Unreviewed build fix after 121580. WebKit Linux debug bots was complaining about signed vs unsigned integer comparison. * html/HTMLCollection.h: (WebCore::HTMLCollectionCacheBase::HTMLCollectionCacheBase): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121589 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebCore/ChangeLog | 9 +++++++++ Source/WebCore/html/HTMLCollection.h | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index d47dace..03e872b 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,12 @@ +2012-06-29 Shawn Singh + + 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 [chromium] Remove mapRect and mapQuad from WebTransformationMatrix diff --git a/Source/WebCore/html/HTMLCollection.h b/Source/WebCore/html/HTMLCollection.h index 1d85c9d..cf71374 100644 --- a/Source/WebCore/html/HTMLCollection.h +++ b/Source/WebCore/html/HTMLCollection.h @@ -47,7 +47,7 @@ public: , m_type(type) , m_includeChildren(includeChildren) { - ASSERT(m_type == type); + ASSERT(static_cast(m_type) == type); } CollectionType type() const { return static_cast(m_type); } -- 2.7.4