surpress unused error for retainedData as it is deliberate to delay its deallocation

Summary:
this diff ignores an used variable error as it is deliberate
xcode 13.3 doesnt like that

see:
https://www.internalfb.com/intern/testinfra/diagnostics/5066549669072759.844424981821815.1644949594/

Note: feel free to commandeer for better fix!

Reviewed By: d16r

Differential Revision: D34259729

fbshipit-source-id: 7c6ba4129a83a6f82981e927744c3a36046d88df
This commit is contained in:
Dominik Pich
2022-02-16 15:47:56 -08:00
committed by Facebook GitHub Bot
parent 9833105764
commit 9703a68423

View File

@@ -21,4 +21,5 @@ static dispatch_data_t NSDataToGCDData(NSData* data) {
return dispatch_data_create(data.bytes, data.length, nil, ^{ return dispatch_data_create(data.bytes, data.length, nil, ^{
retainedData = nil; retainedData = nil;
}); });
(void)retainedData;
} }