Ignore unused return value of GetCodepointNext in GetCodepointCount
Removes the last warning from non-external libraries when compiling with the default build configuration on x64 Linux.
This commit is contained in:
parent
c25b52b1b3
commit
8f53033e86
|
|
@ -1766,7 +1766,7 @@ int GetCodepointCount(const char *text)
|
||||||
while (*ptr != '\0')
|
while (*ptr != '\0')
|
||||||
{
|
{
|
||||||
int next = 0;
|
int next = 0;
|
||||||
int letter = GetCodepointNext(ptr, &next);
|
(void)GetCodepointNext(ptr, &next);
|
||||||
|
|
||||||
ptr += next;
|
ptr += next;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user