From 564be8ebf756c641be8ccacae6cb8f4fed8c4b58 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 8 Apr 2015 08:29:46 -0700 Subject: 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 --- fpdfsdk/include/formfiller/FFL_Utils.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'fpdfsdk/include/formfiller') 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 T FFL_MIN (const T & i, const T & j) { return ((i < j) ? i : j); } -template T FFL_MAX (const T & i, const T & j) { return ((i > j) ? i : j); } - class CFFL_Utils { public: -- cgit v1.2.3