| 255 | struct FunctionSelect |
| 256 | { |
| 257 | FunctionSelect(): curr(NULL){} |
| 258 | bool proceed(){ return !curr; } |
| 259 | void action(unsigned hash){ curr = funcMap.first(hash); } |
| 260 | HashMap<FunctionInfo*>::Node *curr; |
nothing calls this directly
no outgoing calls
no test coverage detected