Index: Source/wtf/text/StringImpl.cpp |
diff --git a/Source/wtf/text/StringImpl.cpp b/Source/wtf/text/StringImpl.cpp |
index 8da23feb15b44ef65aa7d023a3c8e376694de4c2..80ec6f06248c6d4701e08adf2dcda0e2d4fdf93f 100644 |
--- a/Source/wtf/text/StringImpl.cpp |
+++ b/Source/wtf/text/StringImpl.cpp |
@@ -606,7 +606,7 @@ PassRefPtr<StringImpl> StringImpl::upper() |
// 2. Lower case sharp-S converts to "SS" (two characters) |
for (int32_t i = 0; i < length; ++i) { |
LChar c = characters8()[i]; |
- if (UNLIKELY(c == smallLetterSharpS)) |
+ if (UNLIKELY(c == characterSmallLetterSharpS)) |
++numberSharpSCharacters; |
UChar upper = static_cast<UChar>(Unicode::toUpper(c)); |
if (UNLIKELY(upper > 0xff)) { |
@@ -626,7 +626,7 @@ PassRefPtr<StringImpl> StringImpl::upper() |
for (int32_t i = 0; i < length; ++i) { |
LChar c = characters8()[i]; |
- if (c == smallLetterSharpS) { |
+ if (c == characterSmallLetterSharpS) { |
*dest++ = 'S'; |
*dest++ = 'S'; |
} else |