Skip to content

Commit cdcaffb

Browse files
committed
---
yaml --- r: 34005 b: refs/heads/snap-stage3 c: e5e6d3c h: refs/heads/master i: 34003: 5e2f6f1 v: v3
1 parent 5d6fe93 commit cdcaffb

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 10c9d7921d52ed41dadabb507fa8611f808dc485
4+
refs/heads/snap-stage3: e5e6d3c43d007314f12db6752e272a5a109f9b4b
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/librustc/middle/trans/meth.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,8 @@ fn method_ty_param_count(ccx: @crate_ctxt, m_id: ast::def_id,
372372
None => {
373373
match ccx.tcx.provided_method_sources.find(m_id) {
374374
Some(source) => {
375-
method_ty_param_count(ccx, source.method_id, source.impl_id)
375+
method_ty_param_count(
376+
ccx, source.method_id, source.impl_id)
376377
}
377378
None => fail
378379
}

branches/snap-stage3/src/librustc/middle/ty.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,9 @@ type ctxt =
438438
normalized_cache: HashMap<t, t>,
439439
lang_items: middle::lang_items::LanguageItems,
440440
legacy_boxed_traits: HashMap<node_id, ()>,
441-
// A mapping from an implementation ID to the method info and trait method
442-
// ID of the provided (a.k.a. default) methods in the traits that that
443-
// implementation implements.
441+
// A mapping from an implementation ID to the method info and trait
442+
// method ID of the provided (a.k.a. default) methods in the traits that
443+
// that implementation implements.
444444
provided_methods: ProvidedMethodsMap,
445445
provided_method_sources: HashMap<ast::def_id, ProvidedMethodSource>,
446446
supertraits: HashMap<ast::def_id, @~[InstantiatedTraitRef]>,

branches/snap-stage3/src/librustc/middle/typeck/coherence.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ use metadata::csearch::{get_impls_for_mod};
1919
use metadata::cstore::{CStore, iter_crate_data};
2020
use metadata::decoder::{dl_def, dl_field, dl_impl};
2121
use middle::resolve::{Impl, MethodInfo};
22-
use middle::ty::{DerivedMethodInfo, ProvidedMethodSource, ProvidedMethodInfo, get};
22+
use middle::ty::{DerivedMethodInfo, ProvidedMethodSource,
23+
ProvidedMethodInfo, get};
2324
use middle::ty::{lookup_item_type, subst, t, ty_bot, ty_box, ty_class};
2425
use middle::ty::{ty_bool, ty_enum, ty_int, ty_nil, ty_ptr, ty_rptr, ty_uint};
2526
use middle::ty::{ty_float, ty_estr, ty_evec, ty_rec, ty_uniq};

0 commit comments

Comments
 (0)