Update GRXWriter.m

Corrected compiler warning for effectively pure virtual ObjC methods.
pull/3601/head
Scott84 9 years ago
parent 7a94236d69
commit fbc1139aa0
  1. 10
      src/objective-c/RxLibrary/GRXWriter.m

@ -35,4 +35,14 @@
@implementation GRXWriter
- (void)startWithWriteable:(id<GRXWriteable>)writeable {
NSAssert(NO, @"Missing base implementation for %@", NSStringFromSelector(_cmd));
[self doesNotRecognizeSelector:_cmd];
}
- (void)finishWithError:(NSError *)errorOrNil {
NSAssert(NO, @"Missing base implementation for %@", NSStringFromSelector(_cmd));
[self doesNotRecognizeSelector:_cmd];
}
@end

Loading…
Cancel
Save