Remove unnecessary void cast in GetCodepointCount
This commit is contained in:
parent
8f53033e86
commit
814b23b367
|
|
@ -1766,7 +1766,7 @@ int GetCodepointCount(const char *text)
|
|||
while (*ptr != '\0')
|
||||
{
|
||||
int next = 0;
|
||||
(void)GetCodepointNext(ptr, &next);
|
||||
GetCodepointNext(ptr, &next);
|
||||
|
||||
ptr += next;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user