| 817 | } |
| 818 | |
| 819 | int returnBoolValueOrDefault_c(int defaultValue) |
| 820 | { |
| 821 | if (!hasReturnValue_c()) { |
| 822 | return defaultValue; |
| 823 | } |
| 824 | return boolReturnValue_c(); |
| 825 | } |
| 826 | |
| 827 | int intReturnValue_c() |
| 828 | { |
nothing calls this directly
no test coverage detected