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
{{ message }}
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.
The serialization code is using ssize_t rather than size_t so that it can mark errors with a negative value. The problem with this is that ssize_t is not part of standard C and therefore is not supported by all compilers.
Should we change this or should we just have non-supporting compilers re-define ssize_t appropriately?
Note that the Microsoft compiler is one of the ones which does not support this type.
The text was updated successfully, but these errors were encountered:
The serialization code is using ssize_t rather than size_t so that it can mark errors with a negative value. The problem with this is that ssize_t is not part of standard C and therefore is not supported by all compilers.
Should we change this or should we just have non-supporting compilers re-define ssize_t appropriately?
Note that the Microsoft compiler is one of the ones which does not support this type.
The text was updated successfully, but these errors were encountered: