AngelScript signature: void string::resize(uint l)
| 435 | // AngelScript signature: |
| 436 | // void string::resize(uint l) |
| 437 | static void StringResize(asUINT l, string &str) |
| 438 | { |
| 439 | // We don't register the method directly because the argument types change between 32bit and 64bit platforms |
| 440 | str.resize(l); |
| 441 | } |
| 442 | |
| 443 | // AngelScript signature: |
| 444 | // string formatInt(int64 val, const string &in options, uint width) |
nothing calls this directly
no outgoing calls
no test coverage detected