From 8d4210712a1b112d9118b7a592e0e09ad838476f Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 7 Apr 2015 16:58:02 -0700 Subject: Land on master: FFL_MIN and FFL_MAX are pointless and stupid. Original CL was accidentally based off of XFA. This CL is off of master. TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1069553002 --- 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