On Mon, Mar 19, 2018 at 5:19 PM, Junio C Hamano <gits...@pobox.com> wrote: > Nguyễn Thái Ngọc Duy <pclo...@gmail.com> writes: > >> +static inline int oe_fits_in_32bits(unsigned long limit) >> +{ >> + uint32_t truncated_limit = (uint32_t)limit; >> + >> + return limit == truncated_limit; >> +} > > I do not think it is worth a reroll (there only are a few > callsites), but the above has nothing to do with "oe" fitting > anything (it is about "limit"). Do you mind if I did this instead? > > static inline int fits_in_32bits(unsigned long size) > > ... or other suggestions, perhaps? >
I just tried to not pollute the general namespace too much. That works for me too. -- Duy