| 783 | } |
| 784 | |
| 785 | int NULLC::FuncCompare(NULLCFuncPtr a, NULLCFuncPtr b) |
| 786 | { |
| 787 | return a.context == b.context && a.id == b.id; |
| 788 | } |
| 789 | int NULLC::FuncNCompare(NULLCFuncPtr a, NULLCFuncPtr b) |
| 790 | { |
| 791 | return a.context != b.context || a.id != b.id; |
nothing calls this directly
no outgoing calls
no test coverage detected