On 11/02/2017 12:23 PM, jiang.bi...@zte.com.cn wrote: > No, :) Just found some of these functions are inline and others are not when > reading > the code, the style looks inconsistent.
My preference would be to remove them all. > Besides, The compiler may make default inline choices for some functions, but > may > not for some cases(some longer ones). Adding inline manually can guarantee > and > not hurt. :) The longer ones in particular should *not* be inline, so that we don't expand the size of the code unnecessarily. Which *can* hurt. r~