mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Comment
This commit is contained in:
parent
32c5dca733
commit
1e63fc7ca0
4
format.h
4
format.h
@ -377,9 +377,9 @@ void MemoryBuffer<T, SIZE, Allocator>::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
|
||||
|
Loading…
Reference in New Issue
Block a user