Fixed missing public access control on greaterThanEqualTo

This commit is contained in:
Robert Payne 2015-01-14 14:05:34 +13:00
parent bfb1a786ff
commit b3740ffb0d
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public class Constraint {
public func greaterThanOrEqualTo(other: ConstraintItem) -> Constraint { public func greaterThanOrEqualTo(other: ConstraintItem) -> Constraint {
return constrainTo(other, relation: .GreaterThanOrEqualTo) return constrainTo(other, relation: .GreaterThanOrEqualTo)
} }
func greaterThanOrEqualTo(other: View) -> Constraint { public func greaterThanOrEqualTo(other: View) -> Constraint {
return constrainTo(other, relation: .GreaterThanOrEqualTo) return constrainTo(other, relation: .GreaterThanOrEqualTo)
} }
#if os(iOS) #if os(iOS)