提交 47fefa4d 编写于 作者: 赵奇可

fix std::max not found error

上级 3604f69e
...@@ -54,7 +54,7 @@ inline const float* GetCoeffsTable() { ...@@ -54,7 +54,7 @@ inline const float* GetCoeffsTable() {
} }
inline int64_t Bound(int64_t val, int64_t limit) { inline int64_t Bound(int64_t val, int64_t limit) {
return std::min(limit - 1ll, std::max(0ll, val)); return std::min<int64_t>(limit - 1ll, std::max<int64_t>(0ll, val));
} }
inline void GetWeightsAndIndices(float scale, int64_t out_loc, int64_t limit, inline void GetWeightsAndIndices(float scale, int64_t out_loc, int64_t limit,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册