Merge pull request #3261 from thomasvl/super_oddcase

If we fail to get a descriptor just super the method resolving.
pull/3266/head
Thomas Van Lenten 8 years ago committed by GitHub
commit eca0f4ee91
  1. 2
      objectivec/GPBMessage.m

@ -3077,7 +3077,7 @@ static void ResolveIvarSet(GPBFieldDescriptor *field,
+ (BOOL)resolveInstanceMethod:(SEL)sel {
const GPBDescriptor *descriptor = [self descriptor];
if (!descriptor) {
return NO;
return [super resolveInstanceMethod:sel];
}
// NOTE: hasOrCountSel_/setHasSel_ will be NULL if the field for the given

Loading…
Cancel
Save