Skip to content

Commit 85b0d9c

Browse files
committed
---
yaml --- r: 183482 b: refs/heads/beta c: a25ed22 h: refs/heads/master v: v3
1 parent 2b90fb4 commit 85b0d9c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: eec3b431aa30ab6160dcc93b7bf7f654ba9dc6ea
34+
refs/heads/beta: a25ed227a7887454bd1717286a7ada4f8a8d9a00
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3737
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f

branches/beta/src/librustc/metadata/csearch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ pub fn get_trait_def<'tcx>(tcx: &ty::ctxt<'tcx>, def: ast::DefId) -> ty::TraitDe
234234
}
235235

236236
pub fn get_predicates<'tcx>(tcx: &ty::ctxt<'tcx>, def: ast::DefId)
237-
-> ty::GenericPredicates<'tcx>
237+
-> ty::GenericPredicates<'tcx>
238238
{
239239
let cstore = &tcx.sess.cstore;
240240
let cdata = cstore.get_crate_data(def.krate);

branches/beta/src/librustc/metadata/decoder.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@ pub fn get_trait_def<'tcx>(cdata: Cmd,
418418
}
419419

420420
pub fn get_predicates<'tcx>(cdata: Cmd,
421-
item_id: ast::NodeId,
422-
tcx: &ty::ctxt<'tcx>)
423-
-> ty::GenericPredicates<'tcx>
421+
item_id: ast::NodeId,
422+
tcx: &ty::ctxt<'tcx>)
423+
-> ty::GenericPredicates<'tcx>
424424
{
425425
let item_doc = lookup_item(item_id, cdata.data());
426426
doc_predicates(item_doc, tcx, cdata, tag_item_generics)

branches/beta/src/librustc_typeck/collect.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Converting types can require:
4444
4545
So as you can see, in general translating types requires knowing the
4646
trait hierarchy. But this gets a bit tricky because translating the
47-
trait hierarchy requires convering the types that appear in trait
47+
trait hierarchy requires converting the types that appear in trait
4848
references. One potential saving grace is that in general knowing the
4949
trait hierarchy is only necessary for shorthands like `T::X` or
5050
handling omitted lifetime bounds on object types. Therefore, if we are
@@ -1778,12 +1778,12 @@ fn check_method_self_type<'a, 'tcx, RS:RegionScope>(
17781778
&ty::liberate_late_bound_regions(
17791779
tcx, body_scope, &ty::Binder(base_type)));
17801780

1781-
//debug!("required_type={} required_type_free={} \
1782-
//base_type={} base_type_free={}",
1783-
//required_type.repr(tcx),
1784-
//required_type_free.repr(tcx),
1785-
//base_type.repr(tcx),
1786-
//base_type_free.repr(tcx));
1781+
debug!("required_type={} required_type_free={} \
1782+
base_type={} base_type_free={}",
1783+
required_type.repr(tcx),
1784+
required_type_free.repr(tcx),
1785+
base_type.repr(tcx),
1786+
base_type_free.repr(tcx));
17871787

17881788
let infcx = infer::new_infer_ctxt(tcx);
17891789
drop(::require_same_types(tcx,

0 commit comments

Comments
 (0)