diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
| commit | cbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch) | |
| tree | 1f30cca11906cea62f06810e0e8ad6d5f787633b /src/librustc_borrowck/borrowck | |
| parent | 0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff) | |
| download | rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip | |
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/librustc_borrowck/borrowck')
| -rw-r--r-- | src/librustc_borrowck/borrowck/fragments.rs | 4 | ||||
| -rw-r--r-- | src/librustc_borrowck/borrowck/gather_loans/mod.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_borrowck/borrowck/fragments.rs b/src/librustc_borrowck/borrowck/fragments.rs index f3abcb4376c..a13d1d1112a 100644 --- a/src/librustc_borrowck/borrowck/fragments.rs +++ b/src/librustc_borrowck/borrowck/fragments.rs @@ -15,10 +15,10 @@ use self::Fragment::*; use borrowck::InteriorKind::{InteriorField, InteriorElement}; -use borrowck::{LoanPath}; +use borrowck::LoanPath; use borrowck::LoanPathKind::{LpVar, LpUpvar, LpDowncast, LpExtend}; use borrowck::LoanPathElem::{LpDeref, LpInterior}; -use borrowck::move_data::{InvalidMovePathIndex}; +use borrowck::move_data::InvalidMovePathIndex; use borrowck::move_data::{MoveData, MovePathIndex}; use rustc::middle::ty; use rustc::middle::mem_categorization as mc; diff --git a/src/librustc_borrowck/borrowck/gather_loans/mod.rs b/src/librustc_borrowck/borrowck/gather_loans/mod.rs index 7d77eb23b6e..bbdec402bdc 100644 --- a/src/librustc_borrowck/borrowck/gather_loans/mod.rs +++ b/src/librustc_borrowck/borrowck/gather_loans/mod.rs @@ -22,7 +22,7 @@ use rustc::middle::expr_use_visitor as euv; use rustc::middle::mem_categorization as mc; use rustc::middle::region; use rustc::middle::ty; -use rustc::util::ppaux::{Repr}; +use rustc::util::ppaux::Repr; use syntax::ast; use syntax::codemap::Span; use syntax::visit; |
