Skip to content

Commit e5e440e

Browse files
committed
disambiguate
1 parent b102d20 commit e5e440e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/random.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ impl<'py> PyBitGeneratorGuard {
194194
#[cfg(feature = "rand")]
195195
impl rand::RngCore for PyBitGeneratorGuard {
196196
fn next_u32(&mut self) -> u32 {
197-
self.next_u32()
197+
PyBitGeneratorGuard::next_u32(self)
198198
}
199199
fn next_u64(&mut self) -> u64 {
200-
self.next_u64()
200+
PyBitGeneratorGuard::next_u64(self)
201201
}
202202
fn fill_bytes(&mut self, dst: &mut [u8]) {
203203
rand::rand_core::impls::fill_bytes_via_next(self, dst)

0 commit comments

Comments
 (0)