mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-31 19:24:48 +02:00
Remove extra space
This commit is contained in:
2
format.h
2
format.h
@@ -407,7 +407,7 @@ 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