Fix our rdar 33643011 where additional setters were added in the headers
but did not exists.
This commit is contained in:
Sebastien Pouliot 2017-08-23 08:26:48 -04:00 коммит произвёл GitHub
Родитель 4196cd8466
Коммит f4a15e0325
1 изменённых файлов: 3 добавлений и 8 удалений

Просмотреть файл

@ -78,19 +78,14 @@ namespace XamCore.CoreML {
// 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 { }