commit | b23a60fd6ef357bb279e8525d9b3042cfb886b94 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Sep 11 20:21:41 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Sep 11 20:21:41 1996 +0000 |
tree | 82fcfd6966960e8a3a4e4a30c8f5d8c80009b5cc | |
parent | c8ce571c165af658ac7a9b17ec474aa3fc5c5c64 [diff] |
Get rid of bogus MSC_VER undef of CHECK()
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index cc0b98a..b68807f 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c
@@ -39,10 +39,6 @@ #undef HUGE_VAL #endif -#if defined(_MSC_VER) && _MSC_VER < 850 -#define CHECK(x) /* errno is always set VC++ Ver 1.5*/ -#endif - #if defined(HUGE_VAL) && !defined(CHECK) #define CHECK(x) if (errno != 0) ; \ else if (-HUGE_VAL <= (x) && (x) <= HUGE_VAL) ; \