| 964 | } |
| 965 | |
| 966 | void* returnPointerValueOrDefault_c(void * defaultValue) |
| 967 | { |
| 968 | if (!hasReturnValue_c()) { |
| 969 | return defaultValue; |
| 970 | } |
| 971 | return pointerReturnValue_c(); |
| 972 | } |
| 973 | |
| 974 | const void* constPointerReturnValue_c() |
| 975 | { |
nothing calls this directly
no test coverage detected