Skip to content

Commit

Permalink
Auto merge of #3294 - sanxiyn:unused-type-alias, r=alexcrichton
Browse files Browse the repository at this point in the history
Remove unused type aliases

Found by rust-lang/rust#37631 and necessary to land because of cargotest.
  • Loading branch information
bors authored Nov 15, 2016
2 parents 9f1beaf + 79e25ce commit a3d86dd
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/cargo/core/resolver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,6 @@ pub enum Method<'a> {
},
}

// Err(..) == standard transient error (e.g. I/O error)
// Ok(Err(..)) == resolve error, but is human readable
// Ok(Ok(..)) == success in resolving
type ResolveResult<'a> = CargoResult<CargoResult<Box<Context<'a>>>>;

// Information about the dependencies for a crate, a tuple of:
//
// (dependency info, candidates, features activated)
Expand Down

0 comments on commit a3d86dd

Please sign in to comment.