String equality comparison. Returns true iff lhs is equal to rhs. For some reason gcc 4.7 has difficulties resolving the asFUNCTIONPR(operator==, (const string &, const string &) makro, so this wrapper was introduced as work around.
| 716 | // asFUNCTIONPR(operator==, (const string &, const string &) |
| 717 | // makro, so this wrapper was introduced as work around. |
| 718 | static bool StringEquals(const std::string& lhs, const std::string& rhs) |
| 719 | { |
| 720 | return lhs == rhs; |
| 721 | } |
| 722 | |
| 723 | void RegisterStdString_Native(asIScriptEngine *engine) |
| 724 | { |
nothing calls this directly
no outgoing calls
no test coverage detected