1
0
Fork 0
forked from wry/wry

all: don't use gen identifier

This commit is contained in:
Julian Orth 2024-10-20 18:00:04 +02:00
parent 448b9e332e
commit b6345f095c
2 changed files with 8 additions and 8 deletions

View file

@ -19,8 +19,8 @@ pub struct Opaque {
pub fn opaque() -> Opaque {
let mut rng = thread_rng();
Opaque {
lo: rng.gen(),
hi: rng.gen(),
lo: rng.r#gen(),
hi: rng.r#gen(),
}
}