| Index: regexp2000/src/string-stream.cc
|
| diff --git a/regexp2000/src/string-stream.cc b/regexp2000/src/string-stream.cc
|
| index 4390fa17cd932e9dda9271846298025248eb26cd..361fe55842f63c26f3132eab3e881d596a926956 100644
|
| --- a/regexp2000/src/string-stream.cc
|
| +++ b/regexp2000/src/string-stream.cc
|
| @@ -131,7 +131,7 @@ void StringStream::Add(Vector<const char> format, Vector<FmtElm> elms) {
|
| ASSERT_EQ(FmtElm::LC_STR, current.type_);
|
| Vector<const uc16> value = *current.data_.u_lc_str_;
|
| for (int i = 0; i < value.length(); i++)
|
| - Put(value[i]);
|
| + Put(static_cast<char>(value[i]));
|
| break;
|
| }
|
| case 'o': {
|
|
|