Fix unsigned/signed comparison issues. (#103)

Seen here:
https://github.com/VedantParanjape/simpPRU/runs/2613171696
This commit is contained in:
Arthur Sonzogni
2021-05-18 21:48:32 +02:00
committed by GitHub
parent 84debba10c
commit 87a1d75bf1
2 changed files with 16 additions and 6 deletions

View File

@@ -12,7 +12,9 @@ std::wstring to_wstring(T s) {
return to_wstring(std::to_string(s));
}
int wchar_width(char32_t);
int wchar_width(wchar_t);
int wchar_width_cjk(char32_t);
int wchar_width_cjk(wchar_t);
int wstring_width(const std::wstring&);
int wstring_width_cjk(const std::wstring&);