From 4defb0ede9b27e5631971af02cc02998cd906468 Mon Sep 17 00:00:00 2001 From: Chingjun Lau Date: Fri, 21 Oct 2022 10:14:59 -0700 Subject: [PATCH] Add strong qualifier to dartEntrypointArguments. This is causing issue when -Wobjc-property-no-attribute is turned on. Since LLVM 3.1, `strong` has been the default value so this change is effectively a no-op, but improves readability. --- .../darwin/macos/framework/Headers/FlutterDartProject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/macos/framework/Headers/FlutterDartProject.h b/shell/platform/darwin/macos/framework/Headers/FlutterDartProject.h index 76ffc9fe86b97..e888273c880ca 100644 --- a/shell/platform/darwin/macos/framework/Headers/FlutterDartProject.h +++ b/shell/platform/darwin/macos/framework/Headers/FlutterDartProject.h @@ -44,7 +44,7 @@ FLUTTER_DARWIN_EXPORT * * Set this to nil to pass no arguments to the Dart entrypoint. */ -@property(nonatomic, nullable) NSArray* dartEntrypointArguments; +@property(nonatomic, nullable, strong) NSArray* dartEntrypointArguments; @end