Kaynağa Gözat

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
pull/3254/head
ashn 1 yıl önce
işlemeyi yapan: GitHub
ebeveyn
işleme
a86c93ebc0
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      src/rtext.c

+ 1
- 1
src/rtext.c Dosyayı Görüntüle

@ -1766,7 +1766,7 @@ int GetCodepointCount(const char *text)
while (*ptr != '\0')
{
int next = 0;
kt">int letter = GetCodepointNext(ptr, &next);
GetCodepointNext(ptr, &next);
ptr += next;

Yükleniyor…
İptal
Kaydet