Skip to content
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

Fix Xcode 11 (Beta) build error (implicit conversion warning) #1111

Merged
merged 2 commits into from
Jun 7, 2019

Conversation

jneidlinger
Copy link
Contributor

@jneidlinger jneidlinger commented Jun 5, 2019

Fixes:

KIF/Classes/KIFSystemTestActor.m:61:64: error: implicit conversion loses integer precision: 'UIDeviceOrientation' (aka 'enum UIDeviceOrientation') to 'int' [-Werror,-Wshorten-64-to-32]
    [[UIDevice currentDevice] setValue:[NSNumber numberWithInt:orientation] forKey:@"orientation"];

@jneidlinger jneidlinger changed the title Fix Xcode 11 build error (implicit conversion warning) Fix Xcode 11 (Beta) build error (implicit conversion warning) Jun 5, 2019
@@ -58,7 +58,7 @@ - (void)simulateMemoryWarning

- (void)simulateDeviceRotationToOrientation:(UIDeviceOrientation)orientation
{
[[UIDevice currentDevice] setValue:[NSNumber numberWithInt:orientation] forKey:@"orientation"];
[[UIDevice currentDevice] setValue:[NSNumber numberWithInt:(int)orientation] forKey:@"orientation"];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably could just use @(orientation) and avoid the explicit cast. That'd be cleaner if it works IMO.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested it locally and it fixes the compiler error. Went ahead and made that change in this branch.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, definitely cleaner. Thanks for the fast follow up!

@justinseanmartin
Copy link
Contributor

Thanks for calling this out and the contribution @jneidlinger! Will merge this on green builds.

@justinseanmartin justinseanmartin merged commit ae07a65 into kif-framework:master Jun 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants