| 218 | void (*returnFunctionPointerValueOrDefault_c(void(*defaultValue)()))(); |
| 219 | |
| 220 | static void installComparator_c (const char* typeName, MockTypeEqualFunction_c isEqual, MockTypeValueToStringFunction_c valueToString) |
| 221 | { |
| 222 | comparatorList_ = new MockCFunctionComparatorNode(comparatorList_, isEqual, valueToString); |
| 223 | currentMockSupport->installComparator(typeName, *comparatorList_); |
| 224 | } |
| 225 | |
| 226 | static void installCopier_c (const char* typeName, MockTypeCopyFunction_c copier) |
| 227 | { |
nothing calls this directly
no test coverage detected