⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 98402 in webkit


Ignore:
Timestamp:
Oct 25, 2011, 3:55:50 PM (15 years ago)
Author:
adamk@chromium.org
Message:

Forward declare MutationObserverEntry as a struct to fix clang build
https://bugs.webkit.org/show_bug.cgi?id=70853

Reviewed by Ryosuke Niwa.

Node.h forward declared MutationObserverEntry as a class, and clang
complains if the two declarations don't match.

  • dom/Node.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r98400 r98402  
     12011-10-25  Adam Klein  <adamk@chromium.org>
     2
     3        Forward declare MutationObserverEntry as a struct to fix clang build
     4        https://bugs.webkit.org/show_bug.cgi?id=70853
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Node.h forward declared MutationObserverEntry as a class, and clang
     9        complains if the two declarations don't match.
     10
     11        * dom/Node.h:
     12
    1132011-10-25  Dan Bernstein  <mitz@apple.com>
    214
  • trunk/Source/WebCore/dom/Node.h

    r98388 r98402  
    6060class IntRect;
    6161class KeyboardEvent;
    62 class MutationObserverEntry;
    6362class NSResolver;
    6463class NamedNodeMap;
     
    8281class TagNodeList;
    8382class TreeScope;
     83
     84struct MutationObserverEntry;
    8485
    8586typedef int ExceptionCode;
Note: See TracChangeset for help on using the changeset viewer.