From 31aced8b59ecc651a51057ac6f42a46c333ac380 Mon Sep 17 00:00:00 2001 From: vitaut Date: Wed, 18 Nov 2015 08:04:04 -0800 Subject: [PATCH] Improve compatibility with bcc32 --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index eaf5fbd1..8de1a0ea 100644 --- a/format.h +++ b/format.h @@ -612,7 +612,7 @@ inline int getsign(double x) { return sign; } -#ifndef _MSC_VER +#if !defined(_MSC_VER) && !defined(__BORLANDC__) // Portable version of isinf. # ifdef isinf inline int isinfinity(double x) { return isinf(x); }