Changeset 122533 in webkit


Ignore:
Timestamp:
Jul 12, 2012 5:34:26 PM (12 years ago)
Author:
rniwa@webkit.org
Message:

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

  • dom/DynamicNodeList.h:

(WebCore::DynamicNodeListCacheBase::DynamicNodeListCacheBase):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r122532 r122533  
     12012-07-12  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Build fix. Initialize unused const member variables to make compilers happy.
     4
     5        * dom/DynamicNodeList.h:
     6        (WebCore::DynamicNodeListCacheBase::DynamicNodeListCacheBase):
     7
    182012-07-12  Konrad Piascik  <kpiascik@rim.com>
    29
  • trunk/Source/WebCore/dom/DynamicNodeList.h

    r122531 r122533  
    4848
    4949    DynamicNodeListCacheBase(CollectionType collectionType)
    50         : m_collectionType(collectionType)
     50        : m_rootedAtDocument(false) // Ignored
     51        , m_invalidationType(DoNotInvalidateOnAttributeChanges) // Ignored
     52        , m_collectionType(collectionType)
    5153    {
    5254        ASSERT(m_collectionType == static_cast<unsigned>(collectionType));
Note: See TracChangeset for help on using the changeset viewer.