Committed by
GitHub
Create MASConstraint.h
Fix xcode 9 warnings
Showing
1 changed file
with
3 additions
and
3 deletions
@@ -73,17 +73,17 @@ | @@ -73,17 +73,17 @@ | ||
73 | /** | 73 | /** |
74 | * Sets the NSLayoutConstraint priority to MASLayoutPriorityLow | 74 | * Sets the NSLayoutConstraint priority to MASLayoutPriorityLow |
75 | */ | 75 | */ |
76 | -- (MASConstraint * (^)())priorityLow; | 76 | +- (MASConstraint * (^)(void))priorityLow; |
77 | 77 | ||
78 | /** | 78 | /** |
79 | * Sets the NSLayoutConstraint priority to MASLayoutPriorityMedium | 79 | * Sets the NSLayoutConstraint priority to MASLayoutPriorityMedium |
80 | */ | 80 | */ |
81 | -- (MASConstraint * (^)())priorityMedium; | 81 | +- (MASConstraint * (^)(void))priorityMedium; |
82 | 82 | ||
83 | /** | 83 | /** |
84 | * Sets the NSLayoutConstraint priority to MASLayoutPriorityHigh | 84 | * Sets the NSLayoutConstraint priority to MASLayoutPriorityHigh |
85 | */ | 85 | */ |
86 | -- (MASConstraint * (^)())priorityHigh; | 86 | +- (MASConstraint * (^)(void))priorityHigh; |
87 | 87 | ||
88 | /** | 88 | /** |
89 | * Sets the constraint relation to NSLayoutRelationEqual | 89 | * Sets the constraint relation to NSLayoutRelationEqual |
-
Please register or login to post a comment