Skip to content
Snippets Groups Projects
Commit b58de50f authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Merge pull request #3601 from Scott84/Scott84-ObjC-Compiler-Warning-Fix

Prevent warnings for pure virtual methods of GRXWriter.m
parents 07125279 fbc1139a
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment