From: Guido van Rossum Date: Wed, 11 Sep 1996 20:21:41 +0000 (+0000) Subject: Get rid of bogus MSC_VER undef of CHECK() X-Git-Tag: v1.4~223 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b23a60fd6ef357bb279e8525d9b3042cfb886b94;p=thirdparty%2FPython%2Fcpython.git Get rid of bogus MSC_VER undef of CHECK() --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index cc0b98a87c5d..b68807f5ad9e 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -39,10 +39,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #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) ; \