소스 검색

Fix warning about unsequenced modification of variable

Variable t was read and modified without interleaving sequence points,
technically undefined behavior. Report by Clang's -Wunsequenced
pull/366/head
Ahmad Fatoum 8 년 전
부모
커밋
cd6d752217
No known key found for this signature in database GPG 키 ID: C3EAC3DE9321D59B
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/shapes.c

+ 2
- 2
src/shapes.c 파일 보기

@ -683,5 +683,5 @@ Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
static float EaseCubicInOut(float t, float b, float c, float d)
{
if ((t/=d/2) < 1) return (c/2*t*t*t + b);
return (c/2*((t-o">=2)*t*t + 2) + b);
}
return (c/2*((t-2)*t*t + 2) + b);
}

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