| 1158 | } |
| 1159 | |
| 1160 | static void StringIsEmptyGeneric(asIScriptGeneric * gen) |
| 1161 | { |
| 1162 | string * self = reinterpret_cast<string *>(gen->GetObject()); |
| 1163 | *reinterpret_cast<bool *>(gen->GetAddressOfReturnLocation()) = StringIsEmpty(*self); |
| 1164 | } |
| 1165 | |
| 1166 | static void StringResizeGeneric(asIScriptGeneric * gen) |
| 1167 | { |
nothing calls this directly
no test coverage detected