Skip to content

Commit

Permalink
Followup fixes that I missed during an earlier rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
pnkfelix committed Dec 16, 2014
1 parent d6d0bb2 commit 375b79a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/librustc/middle/infer/region_inference/graphviz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ use graphviz as dot;

use middle::ty;
use super::Constraint;
use middle::typeck::infer::SubregionOrigin;
use middle::typeck::infer::region_inference::RegionVarBindings;
use middle::infer::SubregionOrigin;
use middle::infer::region_inference::RegionVarBindings;
use session::config;
use util::nodemap::{FnvHashMap, FnvHashSet};
use util::ppaux::Repr;
Expand Down
2 changes: 1 addition & 1 deletion src/librustc/middle/infer/region_inference/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mod doc;
mod graphviz;

// A constraint that influences the inference process.
#[deriving(PartialEq, Eq, Hash, Show)]
#[deriving(Clone, PartialEq, Eq, Hash, Show)]
pub enum Constraint {
// One region variable is subregion of another
ConstrainVarSubVar(RegionVid, RegionVid),
Expand Down

0 comments on commit 375b79a

Please sign in to comment.