Skip to content

Commit 87b6f84

Browse files
committed
---
yaml --- r: 31121 b: refs/heads/incoming c: e325d02 h: refs/heads/master i: 31119: 90273c1 v: v3
1 parent 74db42c commit 87b6f84

File tree

6 files changed

+3
-15
lines changed

6 files changed

+3
-15
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: 3e0dcd4d0603e8906eb635e516e584d62d291c70
9+
refs/heads/incoming: e325d029d4c0a0102de0000963cad7282f9f9ddd
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libstd/ebml2.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

branches/incoming/src/libstd/prettyprint2.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

branches/incoming/src/libstd/serialization2.rs

Lines changed: 0 additions & 7 deletions
This file was deleted.

branches/incoming/src/libstd/std.rc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ pub mod treemap;
6969
// And ... other stuff
7070

7171
pub mod ebml;
72-
pub mod ebml2;
7372
pub mod dbg;
7473
pub mod getopts;
7574
pub mod json;
@@ -79,7 +78,6 @@ pub mod tempfile;
7978
pub mod term;
8079
pub mod time;
8180
pub mod prettyprint;
82-
pub mod prettyprint2;
8381
pub mod arena;
8482
pub mod par;
8583
pub mod cmp;
@@ -93,7 +91,6 @@ mod unicode;
9391

9492
pub mod test;
9593
pub mod serialization;
96-
pub mod serialization2;
9794

9895
// Local Variables:
9996
// mode: rust;

branches/incoming/src/rustc/metadata/csearch.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Searching for information from the cstore
22

3-
use std::ebml2;
3+
use std::ebml;
44
use syntax::ast;
55
use syntax::ast_util;
66
use syntax::ast_map;
@@ -136,7 +136,7 @@ fn get_field_type(tcx: ty::ctxt, class_id: ast::def_id,
136136
def: ast::def_id) -> ty::ty_param_bounds_and_ty {
137137
let cstore = tcx.cstore;
138138
let cdata = cstore::get_crate_data(cstore, class_id.crate);
139-
let all_items = ebml2::get_doc(ebml2::Doc(cdata.data), tag_items);
139+
let all_items = ebml::get_doc(ebml::Doc(cdata.data), tag_items);
140140
debug!("Looking up %?", class_id);
141141
let class_doc = expect(tcx.diag,
142142
decoder::maybe_find_item(class_id.node, all_items),

0 commit comments

Comments
 (0)