Skip to content

Commit 83389d9

Browse files
author
Greg Bolsinga
authored
Shrink ASCellNode by 8 bytes (#1499)
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`.
1 parent 87335d8 commit 83389d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/ASCellNode.mm

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ @interface ASCellNode ()
3434
ASDisplayNodeDidLoadBlock _viewControllerDidLoadBlock;
3535
ASDisplayNode *_viewControllerNode;
3636
UIViewController *_viewController;
37+
UICollectionViewLayoutAttributes *_layoutAttributes;
3738
BOOL _suspendInteractionDelegate;
3839
BOOL _selected;
3940
BOOL _highlighted;
40-
UICollectionViewLayoutAttributes *_layoutAttributes;
41+
BOOL _neverShowPlaceholders;
4142
}
4243

4344
@end

0 commit comments

Comments
 (0)