| Index: src/string-stream.cc
|
| diff --git a/src/string-stream.cc b/src/string-stream.cc
|
| index 42c2af7bdff87b5851d5bafe5cd36ae0758f4b5a..2101460f1e22d3e886eb23245ab2bbe11a3693f0 100644
|
| --- a/src/string-stream.cc
|
| +++ b/src/string-stream.cc
|
| @@ -295,8 +295,7 @@ bool StringStream::Put(String* str) {
|
|
|
|
|
| bool StringStream::Put(String* str, int start, int end) {
|
| - ConsStringIteratorOp op;
|
| - StringCharacterStream stream(str, &op, start);
|
| + StringCharacterStream stream(str, start);
|
| for (int i = start; i < end && stream.HasMore(); i++) {
|
| uint16_t c = stream.GetNext();
|
| if (c >= 127 || c < 32) {
|
|
|