Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fix: to_string(char) is not the right way to create string from char
indeed, `to_string(char)` converts the ascii value to a string (e.g. 'L' -> 76). use `string(&char, size)` instead.
- Loading branch information