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
Struct cccl_type_info defines size member to have type int (should be size_t), and aligntment to have type int, should be unsigned int instead.
Struct cccl_op_t defines size member to be of type int, as well as ltoir_size. Both should have type size_t. The alignment member should have type unsigned int.
Struct cccl_iterator_t defines size member to be of type int (should be size_t). Similarly, the alignment member should have type unsigned int.
The text was updated successfully, but these errors were encountered:
Struct
cccl_type_info
definessize
member to have typeint
(should besize_t
), andaligntment
to have typeint
, should beunsigned int
instead.Struct
cccl_op_t
definessize
member to be of typeint
, as well asltoir_size
. Both should have typesize_t
. Thealignment
member should have typeunsigned int
.Struct
cccl_iterator_t
definessize
member to be of typeint
(should besize_t
). Similarly, thealignment
member should have typeunsigned int
.The text was updated successfully, but these errors were encountered: