mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Break long line
This commit is contained in:
4
format.h
4
format.h
@ -485,7 +485,9 @@ inline int getsign(double value) {
|
|||||||
return sign;
|
return sign;
|
||||||
}
|
}
|
||||||
inline int isinfinity(double x) { return !_finite(x); }
|
inline int isinfinity(double x) { return !_finite(x); }
|
||||||
inline int isinfinity(long double x) { return !_finite(static_cast<double>(x)); }
|
inline int isinfinity(long double x) {
|
||||||
|
return !_finite(static_cast<double>(x));
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
|
Reference in New Issue
Block a user