소스 검색

[rtext] fix: misuse of cast in GetCodepointCount (#4741)

I was really wondering what is going on here :D I believe this code
tried initially to out-cast 'const' specifier but this is not needed here
at all. Currently, it just confuses whoever reads this so I changed it.
The old code would also trigger -Wcast-qual warning on some compilers.
pull/4742/head
sleeptightAnsiC 2 달 전
committed by GitHub
부모
커밋
99dfec070a
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rtext.c

+ 1
- 1
src/rtext.c 파일 보기

@ -1915,7 +1915,7 @@ void UnloadCodepoints(int *codepoints)
int GetCodepointCount(const char *text)
{
unsigned int length = 0;
t">char ">*n><span class="n">ptr o">= (char *p">)&text[0];
const char *n">ptr = text;
while (*ptr != '\0')
{

불러오는 중...
취소
저장