We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We're trying to perform a partial mock on an object who has a variadic argument list
ie.
- (BOOL)format:(NSString*)format, ... { return YES; }
When OCMock tries to forward invocation to this method it causes a EXC_BAD_ACCESS when trying to access the variadic arguments (ie. calling va_arg())
The text was updated successfully, but these errors were encountered:
Unfortunately this does not work yet. Will keep this issue open as an enhancement request.
Sorry, something went wrong.
va_arg()
EXC_BAD_ACCESS
No branches or pull requests
We're trying to perform a partial mock on an object who has a variadic argument list
ie.
When OCMock tries to forward invocation to this method it causes a EXC_BAD_ACCESS when trying to access the variadic arguments (ie. calling va_arg())
The text was updated successfully, but these errors were encountered: