///////////////////////////////////////////////////////
| 365 | |
| 366 | //////////////////////////////////////////////////////////// |
| 367 | void String::insert(std::size_t position, const String& str) |
| 368 | { |
| 369 | m_string.insert(position, str.m_string); |
| 370 | } |
| 371 | |
| 372 | |
| 373 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected