Commit c9054c88 authored by Andrew Twyman's avatar Andrew Twyman

Regenerate code after recent generator changes

parent 3f0ff223
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
- (NSString *)description - (NSString *)description
{ {
return [NSString stringWithFormat:@"<%@ %p items:%@>", self.class, self, self.items]; return [NSString stringWithFormat:@"<%@ %p items:%@>", self.class, (void *)self, self.items];
} }
@end @end
...@@ -27,7 +27,7 @@ DBExtendedRecord * __nonnull const DBExtendedRecordExtendedRecordConst = [[DBExt ...@@ -27,7 +27,7 @@ DBExtendedRecord * __nonnull const DBExtendedRecordExtendedRecordConst = [[DBExt
- (NSString *)description - (NSString *)description
{ {
return [NSString stringWithFormat:@"<%@ %p foo:%@>", self.class, self, @(self.foo)]; return [NSString stringWithFormat:@"<%@ %p foo:%@>", self.class, (void *)self, @(self.foo)];
} }
@end @end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment