提交 da293b0e 编写于 作者: B Behdad Esfahbod

Use HB_AUTO_RETURN_EXPR in hb_min/max

上级 0241a40f
...@@ -181,13 +181,13 @@ struct ...@@ -181,13 +181,13 @@ struct
struct struct
{ {
template <typename T, typename T2> T template <typename T, typename T2> auto
operator () (const T& a, const T2& b) const { return a <= b ? a : b; } operator () (const T& a, const T2& b) const HB_AUTO_RETURN_EXPR (a <= b ? a : b)
} HB_FUNCOBJ (hb_min); } HB_FUNCOBJ (hb_min);
struct struct
{ {
template <typename T, typename T2> T template <typename T, typename T2> auto
operator () (const T& a, const T2& b) const { return a >= b ? a : b; } operator () (const T& a, const T2& b) const HB_AUTO_RETURN_EXPR (a >= b ? a : b)
} HB_FUNCOBJ (hb_max); } HB_FUNCOBJ (hb_max);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册