We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5966f commit 79a8767Copy full SHA for 79a8767
plugin/platforms/ios/src/BezierElement.h
@@ -6,8 +6,8 @@
6
7
8
#import <Foundation/Foundation.h>
9
-#import <UIKit/UIKit.h>;
10
-#import <QuartzCore/QuartzCore.h>;
+#import <UIKit/UIKit.h>
+#import <QuartzCore/QuartzCore.h>
11
// Block for transforming points
12
typedef CGPoint (^PathBlock)(CGPoint point);
13
plugin/platforms/ios/src/Utility.m
@@ -222,7 +222,7 @@ + (NSString *) loremWords: (NSUInteger) numberOfWords
222
if (noise)
223
return [UIColor colorWithPatternImage:noise];
224
225
- srandom(time(0));
+ srandom((int)time(0));
226
227
CGSize size = CGSizeMake(128, 128);
228
UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);
0 commit comments