diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-12 15:51:59 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-12 15:51:59 -0800 |
commit | 45fe3c2eefd57b48d7307f9efe13d8019c96e489 (patch) | |
tree | 65171335463ed9947d434454d0e70aae59dd9bb4 /core/include | |
parent | 5a5f1f1c905f2c352d2fbde143456124dd2c0fbf (diff) | |
download | pdfium-45fe3c2eefd57b48d7307f9efe13d8019c96e489.tar.xz |
Remove the FX_MIN macro.
Bin the min, bin the min, bin the min, bin the min, bin
the min, bin the min, bin the min, bin the min, bin the
min, bin the min, bin the min, bin the min, bin the min.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1693913003 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fxcrt/fx_system.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/include/fxcrt/fx_system.h b/core/include/fxcrt/fx_system.h index 2fbab98a1d..02efbe10fc 100644 --- a/core/include/fxcrt/fx_system.h +++ b/core/include/fxcrt/fx_system.h @@ -110,7 +110,6 @@ static_assert(FALSE == false, "false_needs_to_be_false"); #endif #endif -#define FX_MIN(a, b) (((a) < (b)) ? (a) : (b)) #define FX_PI 3.1415926535897932384626433832795f // NOTE: prevent use of the return value from snprintf() since some platforms |