diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-04-08 08:29:46 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-04-08 08:29:46 -0700 |
commit | 564be8ebf756c641be8ccacae6cb8f4fed8c4b58 (patch) | |
tree | a8e22af9bd40e9dc7f3f119812db06f0e4f79a55 /fpdfsdk/include/formfiller | |
parent | c851dbd549edcd211dc1e9e5f70c740abaa4933f (diff) | |
download | pdfium-564be8ebf756c641be8ccacae6cb8f4fed8c4b58.tar.xz |
FFL_MIN and FFL_MAX are pointless and stupid.
Kill some nearby dead code while I'm at it.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1064283002
Diffstat (limited to 'fpdfsdk/include/formfiller')
-rw-r--r-- | fpdfsdk/include/formfiller/FFL_Utils.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fpdfsdk/include/formfiller/FFL_Utils.h b/fpdfsdk/include/formfiller/FFL_Utils.h index 4b77aa222e..c5ac2a2b87 100644 --- a/fpdfsdk/include/formfiller/FFL_Utils.h +++ b/fpdfsdk/include/formfiller/FFL_Utils.h @@ -9,9 +9,6 @@ #define FFL_BASE_USERUNIT 1.0f / 72.0f -template<class T> T FFL_MIN (const T & i, const T & j) { return ((i < j) ? i : j); } -template<class T> T FFL_MAX (const T & i, const T & j) { return ((i > j) ? i : j); } - class CFFL_Utils { public: |