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
There are several C functions that modify a world or a fluxon or a vertex by getting a pointer to that object. And then they return '0' always. It is not clear whether this is intentional--are the 0's used as status checks?--or accidental.
To find these instances do:
cd lib
grep --exclude='*.cf.c' 'return 0;' *
If these return values are never used then probably the return value should be dropped and the functions changed to void return type instead of int, long, or NUM.
The text was updated successfully, but these errors were encountered:
There are several C functions that modify a world or a fluxon or a vertex by getting a pointer to that object. And then they return '0' always. It is not clear whether this is intentional--are the 0's used as status checks?--or accidental.
To find these instances do:
If these return values are never used then probably the return value should be dropped and the functions changed to void return type instead of int, long, or NUM.
The text was updated successfully, but these errors were encountered: