| 458 | // to this function (probably 0). |
| 459 | template <class string_type> |
| 460 | inline typename string_type::value_type* WriteInto(string_type* str, |
| 461 | size_t length_with_null) { |
| 462 | DCHECK_GT(length_with_null, 1u); |
| 463 | str->reserve(length_with_null); |
| 464 | str->resize(length_with_null - 1); |
| 465 | return &((*str)[0]); |
| 466 | } |
| 467 | |
| 468 | //----------------------------------------------------------------------------- |
| 469 |