Changeset 98402 in webkit
- Timestamp:
- Oct 25, 2011, 3:55:50 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/Node.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r98400 r98402 1 2011-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 1 13 2011-10-25 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/Source/WebCore/dom/Node.h
r98388 r98402 60 60 class IntRect; 61 61 class KeyboardEvent; 62 class MutationObserverEntry;63 62 class NSResolver; 64 63 class NamedNodeMap; … … 82 81 class TagNodeList; 83 82 class TreeScope; 83 84 struct MutationObserverEntry; 84 85 85 86 typedef int ExceptionCode;
Note:
See TracChangeset
for help on using the changeset viewer.