| 144 | } |
| 145 | |
| 146 | VMScriptFunction::~VMScriptFunction() |
| 147 | { |
| 148 | if (Code != NULL) |
| 149 | { |
| 150 | if (KonstS != NULL) |
| 151 | { |
| 152 | for (int i = 0; i < NumKonstS; ++i) |
| 153 | { |
| 154 | KonstS[i].~FString(); |
| 155 | } |
| 156 | } |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | void VMScriptFunction::Alloc(int numops, int numkonstd, int numkonstf, int numkonsts, int numkonsta, int numlinenumbers) |
| 161 | { |