///////////////////////////////////////////////////////
| 358 | |
| 359 | //////////////////////////////////////////////////////////// |
| 360 | void String::erase(std::size_t position, std::size_t count) |
| 361 | { |
| 362 | m_string.erase(position, count); |
| 363 | } |
| 364 | |
| 365 | |
| 366 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected