-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make NSIndexSet+ASHelpers.h reference local #trivial #857
Conversation
NSIndexSet+ASHelpers.h should be a user vs a system or framework include.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch. However, we want to stick to framework import as much as possible. Could you please update it to “#import <AsyncDisplayKit/NSIndexSet+ASHelpers.h”? Thanks!
Source/Details/ASIntegerMap.mm
Outdated
@@ -13,7 +13,7 @@ | |||
#import "ASIntegerMap.h" | |||
#import <AsyncDisplayKit/ASAssert.h> | |||
#import <unordered_map> | |||
#import "NSIndexSet+ASHelpers.h" | |||
#import <AsyncDisplayKit/NSIndexSet+ASHelpers.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @dmaclach LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM now. Thank you!
* Make NSIndexSet+ASHelpers.h reference local NSIndexSet+ASHelpers.h should be a user vs a system or framework include. * Update ASIntegerMap.mm
NSIndexSet+ASHelpers.h should be a user vs a system or framework include.