get deallocation id for function */
| 1306 | |
| 1307 | /** get deallocation id for function */ |
| 1308 | int Library::getDeallocId(const Token *tok, int arg) const |
| 1309 | { |
| 1310 | const Library::AllocFunc* af = getDeallocFuncInfo(tok); |
| 1311 | return (af && af->arg == arg) ? af->groupId : 0; |
| 1312 | } |
| 1313 | |
| 1314 | /** get reallocation id for function */ |
| 1315 | int Library::getReallocId(const Token *tok, int arg) const |