Fixed warnings for CMake Unity builds

* src/cache/ftcbasic.c: Fixed `warning: 'FT_COMPONENT' macro redefined`
* src/smooth/ftgrays.c: Fixed `warning: 'TRUNC' macro redefined`
This commit is contained in:
Alexander Borsuk 2021-12-25 09:23:58 +01:00
parent 4f35711844
commit 1ffe79e677
2 changed files with 3 additions and 0 deletions

View file

@ -26,6 +26,7 @@
#include "ftccback.h"
#include "ftcerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT cache

View file

@ -333,7 +333,9 @@ typedef ptrdiff_t FT_PtrDist;
#define PIXEL_BITS 8
#define ONE_PIXEL ( 1 << PIXEL_BITS )
#undef TRUNC
#define TRUNC( x ) (TCoord)( (x) >> PIXEL_BITS )
#undef FRACT
#define FRACT( x ) (TCoord)( (x) & ( ONE_PIXEL - 1 ) )
#if PIXEL_BITS >= 6