From be785a8a43410ead5a87ddb5d0c4958608838e22 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 29 Jul 2014 09:14:07 -0700 Subject: [PATCH] Fix MSVC build. --- format.cc | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/format.cc b/format.cc index 77921d0f..b11717ff 100644 --- a/format.cc +++ b/format.cc @@ -63,11 +63,16 @@ namespace { #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. -#ifndef signbit - using std::signbit; +inline int getsign(double x) { +#ifdef signbit + return signbit(x); +#else + return std::signbit(x); #endif +} // Portable version of isinf. inline int isinfinity(double x) { @@ -82,7 +87,7 @@ inline int isinfinity(double x) { #else // _MSC_VER -inline int signbit(double value) { +inline int getsign(double value) { if (value < 0) return 1; if (value == value) return 0; int dec = 0, sign = 0; @@ -210,7 +215,7 @@ inline Arg::StringValue ignore_incompatible_str( Arg::StringValue s) { return s; } } // namespace -int fmt::internal::signbit_noinline(double value) { return signbit(value); } +int fmt::internal::signbit_noinline(double value) { return getsign(value); } void fmt::SystemError::init( int error_code, StringRef format_str, const ArgList &args) { @@ -527,9 +532,9 @@ void fmt::BasicWriter::write_double(T value, const FormatSpec &spec) { } char sign = 0; - // Use signbit instead of value < 0 because the latter is always + // Use getsign instead of value < 0 because the latter is always // false for NaN. - if (signbit(static_cast(value))) { + if (getsign(static_cast(value))) { sign = '-'; value = -value; } else if (spec.flag(SIGN_FLAG)) {