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
Context:
Throughout the project, we use
u32
for unsigned integers.Proposal:
Everywhere,
usize
is used, which makes us do a lot of casting withas usize
oras u32
, so standardize the use ofusize
to the detriment ofu32
.Setup:
rustc
version: 1.79.0cargo
version: 1.79.0