From f00a70bc57a503e3cbba526f87fe434cae7ca801 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 28 Mar 2016 19:06:06 +1100 Subject: [PATCH] Removed powf support for older Python versions --- _imagingmath.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/_imagingmath.c b/_imagingmath.c index c6334edeb..ea9f103c6 100644 --- a/_imagingmath.c +++ b/_imagingmath.c @@ -24,13 +24,6 @@ #define MAX_INT32 2147483647.0 #define MIN_INT32 -2147483648.0 -#if defined(_MSC_VER) && _MSC_VER < 1500 -/* python 2.1/2.2/2.3 = VC98 = VER 1200 */ -/* python 2.4/2.5 = VS.NET 2003 = VER 1310 */ -/* python 2.6 = VS 9.0 = VER 1500 */ -#define powf(a, b) ((float) pow((double) (a), (double) (b))) -#endif - #define UNOP(name, op, type)\ void name(Imaging out, Imaging im1)\ {\