From 7076dab1fd90cfc383a397bf831e860ec64b95b9 Mon Sep 17 00:00:00 2001 From: Antoine Quint Date: Wed, 11 Jun 2014 18:26:23 +0200 Subject: [PATCH] Remove the unnecessary ivar declaration which yields a build error on iOS 8 (the current deployment target does not support automated __weak references). Fixes #187. --- SocketIO.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/SocketIO.h b/SocketIO.h index 2fbb12e..84666df 100755 --- a/SocketIO.h +++ b/SocketIO.h @@ -61,8 +61,6 @@ typedef enum { NSString *_endpoint; NSDictionary *_params; - __weak id _delegate; - NSObject *_transport; BOOL _isConnected;