Skip to content

Commit

Permalink
[coreml] Update to beta 6 (#2531)
Browse files Browse the repository at this point in the history
Fix our rdar 33643011 where additional setters were added in the headers
but did not exists.
  • Loading branch information
spouliot authored Aug 23, 2017
1 parent 4196cd8 commit f4a15e0
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/coreml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,14 @@ interface MLFeatureDescription : NSCopying {

// Category MLFeatureDescription (MLFeatureValueConstraints)

// HACK: radar://33643011 -> https://trello.com/c/ZN712GOi

// [FAIL] Selector not found for CoreML.MLFeatureDescription : setMultiArrayConstraint:
[NullAllowed, Export ("multiArrayConstraint", ArgumentSemantic.Assign)]
MLMultiArrayConstraint MultiArrayConstraint { get; /*set;*/ }
MLMultiArrayConstraint MultiArrayConstraint { get; }

// [FAIL] Selector not found for CoreML.MLFeatureDescription : setImageConstraint:
[NullAllowed, Export ("imageConstraint", ArgumentSemantic.Assign)]
MLImageConstraint ImageConstraint { get; /*set;*/ }
MLImageConstraint ImageConstraint { get; }

// [FAIL] Selector not found for CoreML.MLFeatureDescription : setDictionaryConstraint:
[NullAllowed, Export ("dictionaryConstraint", ArgumentSemantic.Assign)]
MLDictionaryConstraint DictionaryConstraint { get; /*set;*/ }
MLDictionaryConstraint DictionaryConstraint { get; }
}

interface IMLFeatureProvider { }
Expand Down

0 comments on commit f4a15e0

Please sign in to comment.