Fixes Xcode 8 analyzer warning saying that it was missing a release in dealloc (#1678)

This commit is contained in:
Sergio Campamá 2016-06-14 06:28:22 -07:00 committed by Thomas Van Lenten
parent 088c5c491e
commit 71f4a9c6f3

View file

@ -271,6 +271,11 @@ static NSArray *NewFieldsArrayForHasIndex(int hasIndex,
return self;
}
- (void)dealloc {
[package_ release];
[super dealloc];
}
@end
@implementation GPBOneofDescriptor