mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-18 07:28:28 +02:00
fix almost all the warnings caused by -Wstrict-prototypes
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
|
||||
@interface RoomKeyRequestViewController ()
|
||||
{
|
||||
void (^onComplete)();
|
||||
void (^onComplete)(void);
|
||||
|
||||
EncryptionInfoView *encryptionInfoView;
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
@implementation RoomKeyRequestViewController
|
||||
|
||||
- (instancetype)initWithDeviceInfo:(MXDeviceInfo *)deviceInfo wasNewDevice:(BOOL)theWasNewDevice andMatrixSession:(MXSession *)session onComplete:(void (^)())onCompleteBlock
|
||||
- (instancetype)initWithDeviceInfo:(MXDeviceInfo *)deviceInfo wasNewDevice:(BOOL)theWasNewDevice andMatrixSession:(MXSession *)session onComplete:(void (^)(void))onCompleteBlock
|
||||
{
|
||||
self = [super init];
|
||||
if (self)
|
||||
|
||||
Reference in New Issue
Block a user