Replies: 1 comment 1 reply
-
Yeah, unfortunately I'm not sure there's a good solution here. It's annoying that Clang still generates the warning when copying |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I use View.h, Xcode gives me a warning:
I tried changing that member declaration to
but then whenever you copy or move an instance of the
View::DepthOfFieldOptions
structure, you get a deprecation warning. I could forget about changing View.h and just turn off the warning by adding the compile flag-Wno-documentation-deprecated-sync
. But I wonder if anyone can think of a way to make the deprecation warning only show up if one explicitly touches thefocusDistance
member.Beta Was this translation helpful? Give feedback.
All reactions