You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run run TangramDemo app in Release mode in latest XCode 13.4.1 it cannot compile it showing error "Variable 'status_and' set but not used" in file hb-coretext.cc on line 860 in harfbuzz dependency. This error is in fact correct as this variable is used only in assert which is not compiled in Release mode if I understand it correctly. I have tried to disable "Unused Variables" checks in Build Settings for Apple CLang, but it does not helped.
The text was updated successfully, but these errors were encountered:
@liodali I have tried to find some compiler flags to disable this error, but with no luck. Then I simply commented out declaration of variable status_and and also commented out all its usages in the code. At least it can be compiled.
When I try to run run TangramDemo app in Release mode in latest XCode 13.4.1 it cannot compile it showing error
"Variable 'status_and' set but not used"
in filehb-coretext.cc
on line 860 in harfbuzz dependency. This error is in fact correct as this variable is used only in assert which is not compiled in Release mode if I understand it correctly. I have tried to disable "Unused Variables" checks in Build Settings for Apple CLang, but it does not helped.The text was updated successfully, but these errors were encountered: