Index: Source/core/html/parser/HTMLFormattingElementList.h |
diff --git a/Source/core/html/parser/HTMLFormattingElementList.h b/Source/core/html/parser/HTMLFormattingElementList.h |
index 1c93594234cd6859d1022db60463549606723536..eb9dae2391db2ad58cd0ed0956292ea0a0ec1611 100644 |
--- a/Source/core/html/parser/HTMLFormattingElementList.h |
+++ b/Source/core/html/parser/HTMLFormattingElementList.h |
@@ -125,7 +125,12 @@ public: |
const Entry& at(size_t i) const { return m_entries[i]; } |
Entry& at(size_t i) { return m_entries[i]; } |
- DEFINE_INLINE_TRACE() { visitor->trace(m_entries); } |
+ DEFINE_INLINE_TRACE() |
+ { |
+#if ENABLE(OILPAN) |
+ visitor->trace(m_entries); |
+#endif |
+ } |
#ifndef NDEBUG |
void show(); |