Skip to content

Commit 4da388c

Browse files
committed
---
yaml --- r: 39885 b: refs/heads/dist-snap c: e325d02 h: refs/heads/master i: 39883: 9777841 v: v3
1 parent 2912fe8 commit 4da388c

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
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
99
refs/heads/incoming: e90142e536c150df0d9b4b2f11352152177509b5
10-
refs/heads/dist-snap: 3e0dcd4d0603e8906eb635e516e584d62d291c70
10+
refs/heads/dist-snap: e325d029d4c0a0102de0000963cad7282f9f9ddd
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libstd/ebml2.rs

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

branches/dist-snap/src/libstd/prettyprint2.rs

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

branches/dist-snap/src/libstd/serialization2.rs

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

branches/dist-snap/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/dist-snap/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)