Index: src/runtime/runtime-strings.cc |
diff --git a/src/runtime/runtime-strings.cc b/src/runtime/runtime-strings.cc |
index ff683dce1e97ad634763b44952b81781b6a6d2c8..9c74f4b501cb186629bcb6a81568a9d81f90504b 100644 |
--- a/src/runtime/runtime-strings.cc |
+++ b/src/runtime/runtime-strings.cc |
@@ -876,8 +876,7 @@ MUST_USE_RESULT static Object* ConvertCaseHelper( |
// Convert all characters to upper case, assuming that they will fit |
// in the buffer |
- Access<ConsStringIteratorOp> op(isolate->runtime_state()->string_iterator()); |
- StringCharacterStream stream(string, op.value()); |
+ StringCharacterStream stream(string); |
unibrow::uchar chars[Converter::kMaxWidth]; |
// We can assume that the string is not empty |
uc32 current = stream.GetNext(); |