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
I have a deeply rooted distrust to code which uses raw integer types instead of fixed with types as defined in stdint.h. At best, this way of providing code only causes compiler warnings (Example: the size of the buffer is unsigned in the code, but should be size_t, which is usually typedef'd as unsigned long long).
My distrust is so deep, that I am compulsed to report the lack of using proper primitive types as an issue.
The text was updated successfully, but these errors were encountered:
I have a deeply rooted distrust to code which uses raw integer types instead of fixed with types as defined in
stdint.h
. At best, this way of providing code only causes compiler warnings (Example: the size of the buffer isunsigned
in the code, but should besize_t
, which is usually typedef'd asunsigned long long
).My distrust is so deep, that I am compulsed to report the lack of using proper primitive types as an issue.
The text was updated successfully, but these errors were encountered: