kworkflow / patch-hub

patch-hub is a TUI that streamlines the interaction of Linux developers with patches archived on lore.kernel.org
GNU General Public License v2.0
8 stars 6 forks source link

Standardize the use of `usize` for unsigned integers #35

Closed davidbtadokoro closed 1 month ago

davidbtadokoro commented 3 months ago

Context:

Throughout the project, we use u32 for unsigned integers.

Proposal:

Everywhere, usize is used, which makes us do a lot of casting with as usize or as u32, so standardize the use of usize to the detriment of u32.

Setup:

th-duvanel commented 2 months ago

I can do this.