| 97 | } |
| 98 | |
| 99 | static void StringLengthGeneric(asIScriptGeneric * gen) { |
| 100 | string * self = static_cast<string *>(gen->GetObject()); |
| 101 | *static_cast<asUINT *>(gen->GetAddressOfReturnLocation()) = (asUINT)self->length(); |
| 102 | } |
| 103 | |
| 104 | static void AddString2IntGeneric(asIScriptGeneric * gen) { |
| 105 | string * a = static_cast<string *>(gen->GetObject()); |
nothing calls this directly
no test coverage detected