diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-03-14 15:12:09 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-15 01:13:16 +0000 |
commit | 4d67473d6ce55ad6361dae84b00283445f148f37 (patch) | |
tree | 872e1ff82d47d95e050c6d2666225c84901ae2d7 /core | |
parent | 193e6ca5e48ee99e620f0e7546f1407ba1a20323 (diff) | |
download | pdfium-4d67473d6ce55ad6361dae84b00283445f148f37.tar.xz |
Replace FX_POSITION in GFGAS_FontMgr with bool
Change-Id: Iddd99312aee6447c05be5633eead023a004e65e1
Reviewed-on: https://pdfium-review.googlesource.com/3034
Reviewed-by: Nicolás Peña <npm@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcrt/fx_system.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/fxcrt/fx_system.h b/core/fxcrt/fx_system.h index 321a8e272e..94fc20050a 100644 --- a/core/fxcrt/fx_system.h +++ b/core/fxcrt/fx_system.h @@ -67,8 +67,6 @@ extern "C" { #endif // __cplusplus -typedef void* FX_POSITION; // Keep until fxcrt containers gone - #define IsFloatZero(f) ((f) < 0.0001 && (f) > -0.0001) #define IsFloatBigger(fa, fb) ((fa) > (fb) && !IsFloatZero((fa) - (fb))) #define IsFloatSmaller(fa, fb) ((fa) < (fb) && !IsFloatZero((fa) - (fb))) |