Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix unsafe conversion from Char to int
It is not safe to convert from Char to int16, since the unicode code points are unsigned 16-bit integers. The safe conversion it to int32, as also indicated in the docs.
- Loading branch information