AngelScript signature: void string::erase(uint pos, int count = -1)
| 490 | // AngelScript signature: |
| 491 | // void string::erase(uint pos, int count = -1) |
| 492 | static void StringErase(unsigned int pos, int count, string &str) |
| 493 | { |
| 494 | // We don't register the method directly because the argument types change between 32bit and 64bit platforms |
| 495 | str.erase(pos, (size_t)(count < 0 ? string::npos : count)); |
| 496 | } |
| 497 | |
| 498 | |
| 499 | // AngelScript signature: |
no outgoing calls
no test coverage detected