I have method that takes indirect pointer as argument and then, if error, set it to error object. I'm trying to turn on as many warning as possible. But one of them - Implicit ownership types on out parameters
- generates warning in this method:
- (id)doWithError:(NSError **)error {
...
}
How can I fix code to remove warning?