Unused parameter errors in Yoga.c #650
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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: