diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/RegExpKey.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/RegExpKey.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/RegExpKey.h b/Source/JavaScriptCore/runtime/RegExpKey.h index cdaff27f5..f93fbbc1d 100644 --- a/Source/JavaScriptCore/runtime/RegExpKey.h +++ b/Source/JavaScriptCore/runtime/RegExpKey.h @@ -28,8 +28,8 @@ #ifndef RegExpKey_h #define RegExpKey_h -#include "UString.h" #include <wtf/text/StringHash.h> +#include <wtf/text/WTFString.h> namespace JSC { @@ -56,7 +56,7 @@ struct RegExpKey { { } - RegExpKey(RegExpFlags flags, const UString& pattern) + RegExpKey(RegExpFlags flags, const String& pattern) : flagsValue(flags) , pattern(pattern.impl()) { |