summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/JSStringBuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/JSStringBuilder.h')
-rw-r--r--Source/JavaScriptCore/runtime/JSStringBuilder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/JSStringBuilder.h b/Source/JavaScriptCore/runtime/JSStringBuilder.h
index e7778e4fb..5d4960e89 100644
--- a/Source/JavaScriptCore/runtime/JSStringBuilder.h
+++ b/Source/JavaScriptCore/runtime/JSStringBuilder.h
@@ -137,8 +137,8 @@ public:
}
protected:
- Vector<LChar, 64> buffer8;
- Vector<UChar, 64> buffer16;
+ Vector<LChar, 64, UnsafeVectorOverflow> buffer8;
+ Vector<UChar, 64, UnsafeVectorOverflow> buffer16;
bool m_okay;
bool m_is8Bit;
};