File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use build::{BlockAnd, Builder};
18
18
use hair:: * ;
19
19
use rustc:: mir:: * ;
20
20
21
- pub trait EvalInto < ' tcx > {
21
+ pub ( in build ) trait EvalInto < ' tcx > {
22
22
fn eval_into < ' a , ' gcx > ( self ,
23
23
builder : & mut Builder < ' a , ' gcx , ' tcx > ,
24
24
destination : & Lvalue < ' tcx > ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ use rustc_data_structures::indexed_vec::{IndexVec, Idx};
25
25
26
26
use std:: u32;
27
27
28
- pub struct Builder < ' a , ' gcx : ' a +' tcx , ' tcx : ' a > {
28
+ struct Builder < ' a , ' gcx : ' a +' tcx , ' tcx : ' a > {
29
29
hir : Cx < ' a , ' gcx , ' tcx > ,
30
30
cfg : CFG < ' tcx > ,
31
31
@@ -82,7 +82,7 @@ impl Idx for ScopeId {
82
82
/// convenient.
83
83
84
84
#[ must_use] // if you don't use one of these results, you're leaving a dangling edge
85
- pub struct BlockAnd < T > ( BasicBlock , T ) ;
85
+ struct BlockAnd < T > ( BasicBlock , T ) ;
86
86
87
87
trait BlockAndExtension {
88
88
fn and < T > ( self , v : T ) -> BlockAnd < T > ;
You can’t perform that action at this time.
0 commit comments