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 Windows builds give a lot of "unknown conversion type character ‘z’ in format" warnings for %zu for size_t, and some about ‘j’ for %j for intmax_t. We could define custom PRI*-like macros for those data types, depending on the platform's size of those types.
The combinations we use: %zd %zu %jd %ju %jx
The text was updated successfully, but these errors were encountered:
The Windows builds give a lot of "
unknown conversion type character ‘z’ in format
" warnings for%zu
forsize_t
, and some about‘j’
for%j
forintmax_t
. We could define customPRI*
-like macros for those data types, depending on the platform's size of those types.The combinations we use:
%zd %zu %jd %ju %jx
The text was updated successfully, but these errors were encountered: