File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
fabric/graphics/platform/ios
turbomodule/core/platform/ios Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -796,7 +796,7 @@ - (void)registerExtraLazyModules
796
796
#endif
797
797
}
798
798
799
- - (NSArray <RCTModuleData *> *)_initializeModules : (NSArray <id<RCTBridgeModule> > *)modules
799
+ - (NSArray <RCTModuleData *> *)_initializeModules : (NSArray <Class > *)modules
800
800
withDispatchGroup : (dispatch_group_t )dispatchGroup
801
801
lazilyDiscovered : (BOOL )lazilyDiscovered
802
802
{
Original file line number Diff line number Diff line change 6
6
*/
7
7
8
8
#include " Color.h"
9
+ #include < cassert>
9
10
10
11
namespace facebook {
11
12
namespace react {
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ - (void)notifyAboutTurboModuleSetup:(const char *)name
304
304
@" %@ has no setter or ivar for its bridge, which is not "
305
305
" permitted. You must either @synthesize the bridge property, "
306
306
" or provide your own setter method." ,
307
- RCTBridgeModuleNameForClass (strongModule));
307
+ RCTBridgeModuleNameForClass ([ strongModule class ] ));
308
308
}
309
309
}
310
310
You can’t perform that action at this time.
0 commit comments