mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00
Ignore unused return value of GetCodepointNext in GetCodepointCount (#3241)
* 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. * Remove unnecessary void cast in GetCodepointCount
This commit is contained in:
@@ -1766,7 +1766,7 @@ int GetCodepointCount(const char *text)
|
||||
while (*ptr != '\0')
|
||||
{
|
||||
int next = 0;
|
||||
int letter = GetCodepointNext(ptr, &next);
|
||||
GetCodepointNext(ptr, &next);
|
||||
|
||||
ptr += next;
|
||||
|
||||
|
Reference in New Issue
Block a user