MCPcopy Create free account
hub / github.com/anjo76/angelscript / ~_String

Method ~_String

sdk/tests/test_feature/source/teststdstring.cpp:359–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357 _String() {}
358 _String(_String &o) { buffer = o.buffer; }
359 ~_String() {}
360 _String &operator=(const _String&o) { buffer = o.buffer; return *this; }
361 _String &operator=(const std::string&o) { buffer = o; return *this; }
362 _String &operator+=(const _String&o) { buffer += o.buffer; return *this; }

Callers 1

stringDecontructorFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected