Skip to content

Commit

Permalink
Shrink ASCellNode by 8 bytes (TextureGroup#1499)
Browse files Browse the repository at this point in the history
Group the BOOLs together, since there are only 4 (and there are no other auto-generated ivars that are < 64 bits) this is sufficient and keeps the properties `atomic`.
  • Loading branch information
Greg Bolsinga authored and hebertialmeida committed May 10, 2019
1 parent 9eb4053 commit b4ed8c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/ASCellNode.mm
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ @interface ASCellNode ()
ASDisplayNodeDidLoadBlock _viewControllerDidLoadBlock;
ASDisplayNode *_viewControllerNode;
UIViewController *_viewController;
UICollectionViewLayoutAttributes *_layoutAttributes;
BOOL _suspendInteractionDelegate;
BOOL _selected;
BOOL _highlighted;
UICollectionViewLayoutAttributes *_layoutAttributes;
BOOL _neverShowPlaceholders;
}

@end
Expand Down

0 comments on commit b4ed8c9

Please sign in to comment.