Chromium Code Reviews| Index: base/json/json_writer.cc |
| diff --git a/base/json/json_writer.cc b/base/json/json_writer.cc |
| index efe57ec5a338e43a61d7c06e8660d5eb58991c8b..d14c92c06e5a406d1c4a5b81d3764254ccaadc37 100644 |
| --- a/base/json/json_writer.cc |
| +++ b/base/json/json_writer.cc |
| @@ -96,10 +96,10 @@ bool JSONWriter::BuildJSONString(const Value* const node, size_t depth) { |
| // The JSON spec requires that non-integer values in the range (-1,1) |
| // have a zero before the decimal point - ".52" is not valid, "0.52" is. |
| if (real[0] == '.') { |
| - real.insert(0U, 1U, '0'); |
| + real.insert(static_cast<size_t>(0), static_cast<size_t>(1), '0'); |
|
rmcilroy
2014/02/25 11:01:37
ditto here.
|
| } else if (real.length() > 1 && real[0] == '-' && real[1] == '.') { |
| // "-.1" bad "-0.1" good |
| - real.insert(1U, 1U, '0'); |
| + real.insert(static_cast<size_t>(1), static_cast<size_t>(1), '0'); |
| } |
| json_string_->append(real); |
| return result; |