Index: Source/bindings/core/v8/Iterable.h |
diff --git a/Source/bindings/core/v8/Iterable.h b/Source/bindings/core/v8/Iterable.h |
index eafe6f377e7e0cfc2ed9fe7754783fc58d5de482..a24d10d3af89db7997c003cc33780f6ac841f780 100644 |
--- a/Source/bindings/core/v8/Iterable.h |
+++ b/Source/bindings/core/v8/Iterable.h |
@@ -82,7 +82,7 @@ public: |
// Otherwise: set |key| and |value| and return true. |
virtual bool next(ScriptState*, KeyType&, ValueType&, ExceptionState&) = 0; |
- virtual void trace(Visitor*) { } |
+ DEFINE_INLINE_VIRTUAL_TRACE() { } |
}; |
private: |
@@ -137,7 +137,7 @@ private: |
return next(scriptState, exceptionState); |
} |
- void trace(Visitor* visitor) override |
+ DEFINE_INLINE_VIRTUAL_TRACE() |
{ |
visitor->trace(m_source); |
Iterator::trace(visitor); |