enable -Wstrict-prototypes

Summary:
The 14.3 toolchain includes `-Wstrict-prototypes` in `-Wall`. Add it to the default warning list to ensure the code is buildable with the 14.3 toolchain.

Please forward fix any build breakage introduced by this change.

Reviewed By: NSProgrammer

Differential Revision: D44371491

fbshipit-source-id: 257c7f7748b079a34ffd5c041339d518bef9d1e5
This commit is contained in:
Richard Howell
2023-03-28 10:48:57 -07:00
committed by Facebook GitHub Bot
parent 35c145463a
commit 60f4bc1a65

View File

@@ -12,7 +12,7 @@
@protocol FlipperConnection; @protocol FlipperConnection;
typedef void (^ConnectBlock)(id<FlipperConnection>); typedef void (^ConnectBlock)(id<FlipperConnection>);
typedef void (^DisconnectBlock)(); typedef void (^DisconnectBlock)(void);
@interface BlockBasedSonarPlugin : NSObject<FlipperPlugin> @interface BlockBasedSonarPlugin : NSObject<FlipperPlugin>