MCPcopy Create free account
hub / github.com/anjo76/angelscript / AddAssignStringGeneric

Function AddAssignStringGeneric

sdk/add_on/scriptstdstring/scriptstdstring.cpp:1119–1125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1117}
1118
1119static void AddAssignStringGeneric(asIScriptGeneric *gen)
1120{
1121 string * a = static_cast<string *>(gen->GetArgObject(0));
1122 string * self = static_cast<string *>(gen->GetObject());
1123 *self += *a;
1124 gen->SetReturnAddress(self);
1125}
1126
1127static void StringEqualsGeneric(asIScriptGeneric * gen)
1128{

Callers

nothing calls this directly

Calls 3

GetArgObjectMethod · 0.80
GetObjectMethod · 0.80
SetReturnAddressMethod · 0.80

Tested by

no test coverage detected