| 613 | } |
| 614 | |
| 615 | void * MockSupport::returnPointerValueOrDefault(void * defaultValue) |
| 616 | { |
| 617 | if (hasReturnValue()) { |
| 618 | return pointerReturnValue(); |
| 619 | } |
| 620 | return defaultValue; |
| 621 | } |
| 622 | |
| 623 | const void* MockSupport::returnConstPointerValueOrDefault(const void * defaultValue) |
| 624 | { |
no outgoing calls