| 1079 | |
| 1080 | |
| 1081 | void Function::SetAutoHasVariableArguments(const Confidence<bool>& varArgs) |
| 1082 | { |
| 1083 | BNBoolWithConfidence bc; |
| 1084 | bc.value = varArgs.GetValue(); |
| 1085 | bc.confidence = varArgs.GetConfidence(); |
| 1086 | BNSetAutoFunctionHasVariableArguments(m_object, &bc); |
| 1087 | } |
| 1088 | |
| 1089 | |
| 1090 | void Function::SetAutoCanReturn(const Confidence<bool>& returns) |
nothing calls this directly
no test coverage detected