diff options
Diffstat (limited to 'src/fuzzer')
| -rw-r--r-- | src/fuzzer/fuzzer.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/fuzzer/fuzzer.rs b/src/fuzzer/fuzzer.rs index cb1c04434f4..5e2cf689b7c 100644 --- a/src/fuzzer/fuzzer.rs +++ b/src/fuzzer/fuzzer.rs @@ -10,15 +10,6 @@ use syntax::diagnostic; enum test_mode { tm_converge, tm_run, } type context = { mode: test_mode }; // + rng -#[cfg(stage0)] -impl test_mode : cmp::Eq { - pure fn eq(&&other: test_mode) -> bool { - (self as uint) == (other as uint) - } - pure fn ne(&&other: test_mode) -> bool { !self.eq(other) } -} -#[cfg(stage1)] -#[cfg(stage2)] impl test_mode : cmp::Eq { pure fn eq(other: &test_mode) -> bool { (self as uint) == ((*other) as uint) |
