Quickfix. Add #ifdef around @required to prevent compilation error

This commit is contained in:
Gregory John Casamento 2020-10-06 08:49:42 -04:00
parent 411b2c91a6
commit 410388b938

View file

@ -124,7 +124,9 @@ typedef NSInteger NSAccessibilityCustomRotorType;
// Protocol...
@protocol NSAccessibilityCustomRotorItemSearchDelegate <NSObject>
#if GS_PROTOCOLS_HAVE_OPTIONAL
@required
#endif
- (NSAccessibilityCustomRotorItemResult *) rotor: (NSAccessibilityCustomRotor *)rotor
resultForSearchParameters: (NSAccessibilityCustomRotorSearchParameters *)parameters;