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
The _Bool type has better compatibility with C booleans, because truthy values are automatically converted to 1 on assignment. This eliminates bugs like 323f4e4de.
The fix should be as simple as
typedefstructbool_t {
_Boolboolean;
} bool_t;
c-parser treats _Bools as 8 word so verification should be mostly unaffected.
The text was updated successfully, but these errors were encountered:
Issue by lim060
Fri Sep 4 16:49:07 2015
Originally opened as https://github.csiro.au/ts-filesystems/Cogent/issues/97
The
_Bool
type has better compatibility with C booleans, because truthy values are automatically converted to 1 on assignment. This eliminates bugs like 323f4e4de.The fix should be as simple as
c-parser treats
_Bool
s as8 word
so verification should be mostly unaffected.The text was updated successfully, but these errors were encountered: