| 621 | } |
| 622 | |
| 623 | const void* MockSupport::returnConstPointerValueOrDefault(const void * defaultValue) |
| 624 | { |
| 625 | if (hasReturnValue()) { |
| 626 | return constPointerReturnValue(); |
| 627 | } |
| 628 | return defaultValue; |
| 629 | } |
| 630 | |
| 631 | void (*MockSupport::returnFunctionPointerValueOrDefault(void (*defaultValue)()))() |
| 632 | { |
no outgoing calls