From 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 27 Jun 2017 06:07:23 +0000 Subject: webkitgtk-2.16.5 --- Source/JavaScriptCore/bytecode/InlineCallFrameSet.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'Source/JavaScriptCore/bytecode/InlineCallFrameSet.h') diff --git a/Source/JavaScriptCore/bytecode/InlineCallFrameSet.h b/Source/JavaScriptCore/bytecode/InlineCallFrameSet.h index 0a8b2e79c..6c6184173 100644 --- a/Source/JavaScriptCore/bytecode/InlineCallFrameSet.h +++ b/Source/JavaScriptCore/bytecode/InlineCallFrameSet.h @@ -23,17 +23,15 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef InlineCallFrameSet_h -#define InlineCallFrameSet_h +#pragma once #include "CodeOrigin.h" #include -#include +#include namespace JSC { -class InlineCallFrameSet { - WTF_MAKE_NONCOPYABLE(InlineCallFrameSet); +class InlineCallFrameSet : public RefCounted { public: InlineCallFrameSet(); ~InlineCallFrameSet(); @@ -45,12 +43,9 @@ public: typedef Bag::iterator iterator; iterator begin() { return m_frames.begin(); } iterator end() { return m_frames.end(); } - + private: Bag m_frames; }; } // namespace JSC - -#endif // InlineCallFrameSet_h - -- cgit v1.2.1