We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78bed5c commit 64b9572Copy full SHA for 64b9572
[refs]
@@ -1,5 +1,5 @@
1
---
2
-refs/heads/master: 5f7947aa52f79943593c36d71868757ef351b94e
+refs/heads/master: 8627fc972673df2dba7945cc973def0083517647
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
refs/heads/snap-stage3: 79a2b2eafc3c766cecec8a5f76317693bae9ed17
5
refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a
trunk/src/libcore/rand.rs
@@ -690,7 +690,7 @@ pub fn task_rng() -> @IsaacRng {
690
691
// Allow direct chaining with `task_rng`
692
impl<R: Rng> Rng for @R {
693
- fn next(&self) -> u32 { (*self).next() }
+ fn next(&self) -> u32 { (**self).next() }
694
}
695
696
/**
0 commit comments