Title: [122533] trunk/Source/WebCore
Revision
122533
Author
rn...@webkit.org
Date
2012-07-12 17:34:26 -0700 (Thu, 12 Jul 2012)

Log Message

Build fix. Initialize unused const member variables to make compilers happy.

* dom/DynamicNodeList.h:
(WebCore::DynamicNodeListCacheBase::DynamicNodeListCacheBase):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122532 => 122533)


--- trunk/Source/WebCore/ChangeLog	2012-07-13 00:29:03 UTC (rev 122532)
+++ trunk/Source/WebCore/ChangeLog	2012-07-13 00:34:26 UTC (rev 122533)
@@ -1,3 +1,10 @@
+2012-07-12  Ryosuke Niwa  <rn...@webkit.org>
+
+        Build fix. Initialize unused const member variables to make compilers happy.
+
+        * dom/DynamicNodeList.h:
+        (WebCore::DynamicNodeListCacheBase::DynamicNodeListCacheBase):
+
 2012-07-12  Konrad Piascik  <kpias...@rim.com>
 
         Web Inspector: Geolocation override

Modified: trunk/Source/WebCore/dom/DynamicNodeList.h (122532 => 122533)


--- trunk/Source/WebCore/dom/DynamicNodeList.h	2012-07-13 00:29:03 UTC (rev 122532)
+++ trunk/Source/WebCore/dom/DynamicNodeList.h	2012-07-13 00:34:26 UTC (rev 122533)
@@ -47,7 +47,9 @@
     }
 
     DynamicNodeListCacheBase(CollectionType collectionType)
-        : m_collectionType(collectionType)
+        : m_rootedAtDocument(false) // Ignored
+        , m_invalidationType(DoNotInvalidateOnAttributeChanges) // Ignored
+        , m_collectionType(collectionType)
     {
         ASSERT(m_collectionType == static_cast<unsigned>(collectionType));
         clearCache();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to