From 1e63fc7ca0fb8de6b83d4f3c8345edf134682637 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 5 Oct 2014 09:34:46 -0700 Subject: [PATCH] Comment --- format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.h b/format.h index ff3a2e90..86dc32c2 100644 --- a/format.h +++ b/format.h @@ -377,9 +377,9 @@ void MemoryBuffer::grow(std::size_t size) { #ifndef _MSC_VER // Portable version of signbit. -// When compiled in C++11 mode signbit is no longer a macro but a function -// defined in namespace std and the macro is undefined. inline int getsign(double x) { + // When compiled in C++11 mode signbit is no longer a macro but a function + // defined in namespace std and the macro is undefined. # ifdef signbit return signbit(x); # else