summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp')
-rw-r--r--Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp b/Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp
index 82e0f7fd1..be5edb34c 100644
--- a/Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp
+++ b/Source/JavaScriptCore/bytecode/InlineCallFrameSet.cpp
@@ -25,7 +25,6 @@
#include "config.h"
#include "InlineCallFrameSet.h"
-#include "JSCInlines.h"
namespace JSC {
@@ -37,11 +36,5 @@ InlineCallFrame* InlineCallFrameSet::add()
return m_frames.add();
}
-void InlineCallFrameSet::visitAggregate(SlotVisitor& visitor)
-{
- for (InlineCallFrame* callFrame : m_frames)
- callFrame->visitAggregate(visitor);
-}
-
} // namespace JSC