Skip to content

Commit 09d0942

Browse files
committed
fix float warning
Reviewers: featherless, #material_components_ios_owners, junius Reviewed By: #material_components_ios_owners, junius Projects: #material_components_ios Differential Revision: http://codereview.cc/D101
1 parent 43123a4 commit 09d0942

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Ink/src/MDCInkTouchController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ - (instancetype)initWithView:(UIView *)view {
6666
[_view addGestureRecognizer:_gestureRecognizer];
6767

6868
_defaultInkView = [[MDCInkView alloc] initWithFrame:view.bounds];
69-
_defaultInkView.inkColor = [UIColor colorWithWhite:224.0 / 255.0 alpha:0.25];
69+
_defaultInkView.inkColor = [UIColor colorWithWhite:224.0f / 255.0f alpha:0.25f];
7070
_defaultInkView.autoresizingMask =
7171
UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
7272
}

0 commit comments

Comments
 (0)