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 fixing compiler warnings about integer type mismatches, please use types with explicit bit widths (i.e. int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t).
When fixing compiler warnings involving boolean operations, please use true and false instead of 1 and 0 where possible and please use the standard bool from stdbool.h for the type.
The text was updated successfully, but these errors were encountered:
Fix all compiler warnings on:
When fixing compiler warnings about integer type mismatches, please use types with explicit bit widths (i.e.
int8_t
,int16_t
,int32_t
,int64_t
,uint8_t
,uint16_t
,uint32_t
,uint64_t
).When fixing compiler warnings involving boolean operations, please use
true
andfalse
instead of1
and0
where possible and please use the standardbool
fromstdbool.h
for the type.The text was updated successfully, but these errors were encountered: