[introspection] Fix ApiAvailabilityTest macOS max version

This commit is contained in:
Vincent Dondain 2018-03-30 15:59:59 -04:00
Родитель 94af4c6713
Коммит 260da1b5b4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -54,7 +54,7 @@ namespace Introspection {
};
#else
Minimum = new Version (10,7);
Maximum = new Version (10,13,2); // setting OSX_SDK_VERSION to 10.13.2 (instead of 10.13 breaks other assumptions)
Maximum = new Version (10,13,4); // setting OSX_SDK_VERSION to 10.13.4 (instead of 10.13 breaks other assumptions)
Filter = (AvailabilityBaseAttribute arg) => {
return (arg.AvailabilityKind != AvailabilityKind.Introduced) || (arg.Platform != PlatformName.MacOSX);
};