internal
| 1054 | |
| 1055 | // internal |
| 1056 | bool asCScriptFunction::IsSignatureEqual(const asCScriptFunction *func) const |
| 1057 | { |
| 1058 | if( name != func->name || !IsSignatureExceptNameEqual(func) ) return false; |
| 1059 | |
| 1060 | return true; |
| 1061 | } |
| 1062 | |
| 1063 | // internal |
| 1064 | bool asCScriptFunction::IsSignatureExceptNameEqual(const asCScriptFunction *func) const |
no outgoing calls
no test coverage detected