| 243 | } |
| 244 | |
| 245 | void VMScriptFunction::DestroyExtra(void *addr) |
| 246 | { |
| 247 | char *caddr = (char*)addr; |
| 248 | |
| 249 | for (auto tao : SpecialInits) |
| 250 | { |
| 251 | tao.first->DestroyValue(caddr + tao.second); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | int VMScriptFunction::AllocExtraStack(PType *type) |
| 256 | { |