Changeset 119478 in webkit
- Timestamp:
- Jun 5, 2012, 3:39:59 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/SelectorQuery.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r119477 r119478 1 2012-06-05 Kentaro Hara <haraken@chromium.org> 2 3 Remove unnecessary constructor of SelectorQueryCache 4 https://bugs.webkit.org/show_bug.cgi?id=87942 5 6 Reviewed by Ryosuke Niwa. 7 8 Per the comment from darin@ (https://bugs.webkit.org/show_bug.cgi?id=87942#c27), 9 this patch removes an inline constructor that has no arguments. 10 To have the compiler generate the constructor, 11 this patch also removes WTF_MAKE_NONCOPYABLE(). 12 13 No tests. No change in behavior. 14 15 * dom/SelectorQuery.h: 16 (SelectorQueryCache): 17 1 18 2012-06-05 Kentaro Hara <haraken@chromium.org> 2 19 -
trunk/Source/WebCore/dom/SelectorQuery.h
r119477 r119478 75 75 76 76 class SelectorQueryCache { 77 WTF_MAKE_NONCOPYABLE(SelectorQueryCache);78 77 WTF_MAKE_FAST_ALLOCATED; 79 78 public: 80 SelectorQueryCache() { };81 82 79 SelectorQuery* add(const AtomicString&, Document*, ExceptionCode&); 83 80 void invalidate();
Note:
See TracChangeset
for help on using the changeset viewer.