Mark params __unused or #pragma unused

Summary:
Motivation: reduce build noise that might worry new users or hide real problems.

This deals with four of the warnings currently in the iOS build. The `__unused` additions are standard and self-explanatory, following the style used elsewhere in RN. I've used `#pragma unused` to deal with parameters named by macros.

Tested by building and running the `UIExplorer` example app in XCode 8.2
Closes https://github.com/facebook/react-native/pull/11797

Differential Revision: D4396611

fbshipit-source-id: 728e9ebb94d147f7a2cbc674a25fe67e66e2e8b2
This commit is contained in:
rh389 2017-01-09 19:23:44 -08:00 committed by Facebook Github Bot
parent fa3c06d637
commit 2d8a287f9c
3 changed files with 5 additions and 3 deletions

View File

@ -20,7 +20,7 @@
RCT_EXPORT_MODULE(JSCSamplingProfiler); RCT_EXPORT_MODULE(JSCSamplingProfiler);
#ifdef RCT_PROFILE #ifdef RCT_PROFILE
RCT_EXPORT_METHOD(operationComplete:(int)token result:(id)profileData error:(id)error) RCT_EXPORT_METHOD(operationComplete:(__unused int)token result:(id)profileData error:(id)error)
{ {
if (error) { if (error) {
RCTLogError(@"JSC Sampling profiler ended with error: %@", error); RCTLogError(@"JSC Sampling profiler ended with error: %@", error);

View File

@ -104,6 +104,7 @@ RCT_EXPORT_VIEW_PROPERTY(onChange, RCTBubblingEventBlock)
RCT_EXPORT_VIEW_PROPERTY(onPress, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(onPress, RCTBubblingEventBlock)
RCT_CUSTOM_VIEW_PROPERTY(region, MKCoordinateRegion, RCTMap) RCT_CUSTOM_VIEW_PROPERTY(region, MKCoordinateRegion, RCTMap)
{ {
#pragma unused (defaultView)
if (json) { if (json) {
[view setRegion:[RCTConvert MKCoordinateRegion:json] animated:YES]; [view setRegion:[RCTConvert MKCoordinateRegion:json] animated:YES];
} }
@ -290,7 +291,7 @@ RCT_CUSTOM_VIEW_PROPERTY(region, MKCoordinateRegion, RCTMap)
return annotationView; return annotationView;
} }
- (void)mapView:(RCTMap *)mapView didAddAnnotationViews:(NSArray *)views { - (void)mapView:(RCTMap *)mapView didAddAnnotationViews:(__unused NSArray *)views {
if (mapView.showsAnnotationCallouts) { if (mapView.showsAnnotationCallouts) {
for (id<MKAnnotation> annotation in mapView.annotations) { for (id<MKAnnotation> annotation in mapView.annotations) {
[mapView selectAnnotation:annotation animated:YES]; [mapView selectAnnotation:annotation animated:YES];
@ -298,7 +299,7 @@ RCT_CUSTOM_VIEW_PROPERTY(region, MKCoordinateRegion, RCTMap)
} }
} }
- (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay - (MKOverlayRenderer *)mapView:(__unused MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay
{ {
RCTAssert([overlay isKindOfClass:[RCTMapOverlay class]], @"Overlay must be of type RCTMapOverlay"); RCTAssert([overlay isKindOfClass:[RCTMapOverlay class]], @"Overlay must be of type RCTMapOverlay");
MKPolylineRenderer *polylineRenderer = [[MKPolylineRenderer alloc] initWithPolyline:overlay]; MKPolylineRenderer *polylineRenderer = [[MKPolylineRenderer alloc] initWithPolyline:overlay];

View File

@ -88,6 +88,7 @@ RCT_EXPORT_VIEW_PROPERTY(onScrollAnimationEnd, RCTDirectEventBlock)
// that css-layout is always treating the contents of a scroll container as // that css-layout is always treating the contents of a scroll container as
// overflow: 'scroll'. // overflow: 'scroll'.
RCT_CUSTOM_SHADOW_PROPERTY(overflow, YGOverflow, RCTShadowView) { RCT_CUSTOM_SHADOW_PROPERTY(overflow, YGOverflow, RCTShadowView) {
#pragma unused (json)
view.overflow = YGOverflowScroll; view.overflow = YGOverflowScroll;
} }