Changeset 185810 in webkit
- Timestamp:
- Jun 21, 2015, 9:01:51 AM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Shared/API/Cocoa/WKFoundation.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r185808 r185810 1 2015-06-21 Dan Bernstein <mitz@apple.com> 2 3 Build fix. 4 5 * Shared/API/Cocoa/WKFoundation.h: Don’t use generics if the SDK doesn’t support them. 6 1 7 2015-06-21 Michael Catanzaro <mcatanzaro@igalia.com> 2 8 -
trunk/Source/WebKit2/Shared/API/Cocoa/WKFoundation.h
r185803 r185810 50 50 #define WK_ENUM_AVAILABLE_IOS(_ios) 51 51 52 #if __has_feature(objc_generics) 52 #if __has_feature(objc_generics) && (!defined(__MAC_OS_X_VERSION_MAX_ALLOWED) || __MAC_OS_X_VERSION_MAX_ALLOWED >= 101100) 53 53 54 54 #define WK_ARRAY(_objectType) NSArray<_objectType>
Note:
See TracChangeset
for help on using the changeset viewer.