Register snapshots. Remove redundant Eq impls, Makefile hacks
This commit is contained in:
parent
2dae768624
commit
afd91f8a56
76 changed files with 8 additions and 3677 deletions
|
|
@ -96,15 +96,6 @@ fn parse_opts(args: &[~str]) -> OptRes {
|
|||
|
||||
enum TestResult { TrOk, TrFailed, TrIgnored, }
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl TestResult : Eq {
|
||||
pure fn eq(&&other: TestResult) -> bool {
|
||||
(self as uint) == (other as uint)
|
||||
}
|
||||
pure fn ne(&&other: TestResult) -> bool { !self.eq(other) }
|
||||
}
|
||||
#[cfg(stage1)]
|
||||
#[cfg(stage2)]
|
||||
impl TestResult : Eq {
|
||||
pure fn eq(other: &TestResult) -> bool {
|
||||
(self as uint) == ((*other) as uint)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue