mirror of
https://github.com/fmtlib/fmt.git
synced 2026-05-04 11:44:08 +02:00
Remove extra space
This commit is contained in:
@@ -407,7 +407,7 @@ inline int getsign(double value) {
|
||||
return sign;
|
||||
}
|
||||
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
|
||||
|
||||
template <typename Char>
|
||||
|
||||
Reference in New Issue
Block a user