| 18 | } |
| 19 | |
| 20 | void DynamicString::from_string_id(const StringId32 &id) |
| 21 | { |
| 22 | array::resize(_data, STRING_ID32_BUF_LEN); |
| 23 | id.to_string(array::begin(_data), STRING_ID32_BUF_LEN); |
| 24 | array::pop_back(_data); |
| 25 | } |
| 26 | |
| 27 | void DynamicString::from_string_id(const StringId64 &id) |
| 28 | { |