Skip to content

Commit

Permalink
Merge pull request #234 from Countly/rc-ios-warning-fixes
Browse files Browse the repository at this point in the history
fixed RC warnings
  • Loading branch information
ArtursKadikis authored Jun 27, 2023
2 parents 766a38a + 2ab1064 commit d57f340
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CountlyConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ extern CLYRequestResult const CLYResponseNetworkIssue;
extern CLYRequestResult const CLYResponseSuccess;
extern CLYRequestResult const CLYResponseError;

typedef void (^RCVariantCallback)(CLYRequestResult response, NSError * error);
typedef void (^RCVariantCallback)(CLYRequestResult response, NSError *_Nullable error);

typedef void (^RCDownloadCallback)(CLYRequestResult response, NSError * error, BOOL fullValueUpdate, NSDictionary<NSString *, CountlyRCData *>* downloadedValues);
typedef void (^RCDownloadCallback)(CLYRequestResult response, NSError *_Nullable error, BOOL fullValueUpdate, NSDictionary<NSString *, CountlyRCData *>* downloadedValues);

//NOTE: Internal log levels
typedef enum : NSUInteger
Expand Down
1 change: 0 additions & 1 deletion CountlyRemoteConfigInternal.m
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,6 @@ - (void)testingDownloadAllVariantsInternal:(void (^)(CLYRequestResult response,
else {
[valuesArray addObject:arrayValue];
}
printf("%s", valueType);
}];
variants[key] = valuesArray;
}];
Expand Down

0 comments on commit d57f340

Please sign in to comment.