From 4a76a401b9c7e08301779bd38ad37095645c7f37 Mon Sep 17 00:00:00 2001 From: joshaber Date: Sat, 15 Jun 2013 08:08:15 -0700 Subject: [PATCH] use a concrete underlying type --- ReactiveCocoaLayout/RACSignal+RCLAnimationAdditions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactiveCocoaLayout/RACSignal+RCLAnimationAdditions.h b/ReactiveCocoaLayout/RACSignal+RCLAnimationAdditions.h index 2aaf76a..bfa29b1 100644 --- a/ReactiveCocoaLayout/RACSignal+RCLAnimationAdditions.h +++ b/ReactiveCocoaLayout/RACSignal+RCLAnimationAdditions.h @@ -20,7 +20,7 @@ // RCLAnimationCurveLinear - Animates with the same pace over the duration of // the animation. #ifdef __IPHONE_OS_VERSION_MIN_REQUIRED - typedef enum : UIViewAnimationOptions { + typedef enum : NSUInteger { RCLAnimationCurveDefault = 0, RCLAnimationCurveEaseInOut = UIViewAnimationOptionCurveEaseInOut, RCLAnimationCurveEaseIn = UIViewAnimationOptionCurveEaseIn,