Commit ba3e1ff2 authored by Adilet Zhaxybay's avatar Adilet Zhaxybay Committed by Guolin Ke
Browse files

Replaced tabs with spaces (#1330)

parent 1e3b57d4
...@@ -669,13 +669,13 @@ inline static double AvoidInf(double x) { ...@@ -669,13 +669,13 @@ inline static double AvoidInf(double x) {
} }
inline static float AvoidInf(float x) { inline static float AvoidInf(float x) {
if (x >= 1e38) { if (x >= 1e38) {
return 1e38f; return 1e38f;
} else if (x <= -1e38) { } else if (x <= -1e38) {
return -1e38f; return -1e38f;
} else { } else {
return x; return x;
} }
} }
template<typename _Iter> inline template<typename _Iter> inline
......
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