We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a React Native application. Load the project in Xcode Update your project to recommended settings if Xcode tells you there are updates. Build
No warnings
Two unused parameter warnings are displayed on lines 280 and 281 of Yoga.c
This can be solved by adding __attribute__((unused) in front of the parameter names, like so:
__attribute__((unused)
static int YGDefaultLog(const YGConfigRef __attribute__((unused)) config, const YGNodeRef __attribute__((unused)) node,
The text was updated successfully, but these errors were encountered:
429a7ee
No branches or pull requests
Report
Issues and Steps to Reproduce
Create a React Native application.
Load the project in Xcode
Update your project to recommended settings if Xcode tells you there are updates.
Build
Expected Behavior
No warnings
Actual Behavior
Two unused parameter warnings are displayed on lines 280 and 281 of Yoga.c
This can be solved by adding
__attribute__((unused)
in front of the parameter names, like so:The text was updated successfully, but these errors were encountered: