12019-10-09 Keith Rollin <krollin@apple.com>
2
3 Remove some support for < iOS 13
4 https://bugs.webkit.org/show_bug.cgi?id=202371
5 <rdar://problem/55853960>
6
7 Reviewed by Youenn Fablet.
8
9 Remove some support for iOS versions less than 13.0.
10
11 Update conditionals that reference __IPHONE_OS_VERSION_MIN_REQUIRED
12 and __IPHONE_OS_VERSION_MAX_ALLOWED, assuming that they both have
13 values >= 130000. This means that expressions like
14 "__IPHONE_OS_VERSION_MIN_REQUIRED < 101300" are always False and
15 "__IPHONE_OS_VERSION_MIN_REQUIRED >= 101300" are always True.
16
17 This removal is part of a series of patches effecting the removal of
18 dead code for old versions of iOS. This particular pass involves
19 changes in which Dean Jackson was involved. These changes are isolated
20 from other similar changes in order to facilitate the reviewing
21 process.
22
23 * wtf/FeatureDefines.h:
24 * wtf/Platform.h:
25