Commit f3bd9d42 authored by Victor Zverovich's avatar Victor Zverovich

Remove extra space

parent 6f3c095e
......@@ -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>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment