summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptCore/pcre/pcre_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/pcre/pcre_exec.cpp')
-rw-r--r--Source/JavaScriptCore/pcre/pcre_exec.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/pcre/pcre_exec.cpp b/Source/JavaScriptCore/pcre/pcre_exec.cpp
index 789f80a..b7018aa 100644
--- a/Source/JavaScriptCore/pcre/pcre_exec.cpp
+++ b/Source/JavaScriptCore/pcre/pcre_exec.cpp
@@ -112,7 +112,9 @@ struct BracketChainNode {
const UChar* bracketStart;
};
-struct MatchFrame : FastAllocBase {
+struct MatchFrame {
+ WTF_MAKE_FAST_ALLOCATED;
+public:
ReturnLocation returnLocation;
struct MatchFrame* previousFrame;