From f3bd9d4241364b70c9b2d6f790043e8d4353a9cf Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 3 Dec 2014 06:20:12 -0800 Subject: [PATCH] Remove extra space --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index c3e66d1a..97e176b0 100644 --- a/format.h +++ b/format.h @@ -407,7 +407,7 @@ inline int getsign(double value) { return sign; } inline int isinfinity(double x) { return !_finite(x); } -inline int isinfinity( long double x) { return !_finite(static_cast(x)); } +inline int isinfinity(long double x) { return !_finite(static_cast(x)); } #endif template