Skip to content

Commit e22a07d

Browse files
committed
---
yaml --- r: 140691 b: refs/heads/try2 c: 9f106a6 h: refs/heads/master i: 140689: 17fc4d5 140687: c2c8e5e v: v3
1 parent 4d4d040 commit e22a07d

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 60803e5fc81ed7065c91c0b1725dbbd4da0af3f7
8+
refs/heads/try2: 9f106a643e6cdf2f3c8d62bcec61da087ed24c5b
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libcore/core.rc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,6 @@ pub mod rand;
228228
pub mod run;
229229
pub mod sys;
230230
pub mod cast;
231-
pub mod flate;
232231
pub mod repr;
233232
pub mod cleanup;
234233
pub mod reflect;

branches/try2/src/librustc/metadata/encoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use middle::ty;
2020
use middle;
2121
use util::ppaux::ty_to_str;
2222

23-
use core::flate;
23+
use std::flate;
2424
use core::hash::HashUtil;
2525
use core::hashmap::HashMap;
2626
use std::serialize::Encodable;

branches/try2/src/librustc/metadata/loader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use syntax::parse::token::ident_interner;
2222
use syntax::print::pprust;
2323
use syntax::{ast, attr};
2424

25-
use core::flate;
25+
use std::flate;
2626
use core::os::consts::{macos, freebsd, linux, android, win32};
2727

2828
pub enum os {

branches/try2/src/libcore/flate.rs renamed to branches/try2/src/libstd/flate.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ Simple compression
1515
*/
1616

1717
use libc;
18-
use libc::{c_void, size_t, c_int};
18+
use core::libc::{c_void, size_t, c_int};
1919
use vec;
2020

21-
#[cfg(test)] use rand;
22-
#[cfg(test)] use rand::RngUtil;
21+
#[cfg(test)] use core::rand;
22+
#[cfg(test)] use core::rand::RngUtil;
2323

2424
pub mod rustrt {
25-
use libc::{c_int, c_void, size_t};
25+
use core::libc::{c_int, c_void, size_t};
2626

2727
#[link_name = "rustrt"]
2828
pub extern {

branches/try2/src/libstd/std.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ pub mod complex;
107107
pub mod stats;
108108
pub mod semver;
109109
pub mod fileinput;
110+
pub mod flate;
110111

111112
#[cfg(unicode)]
112113
mod unicode;

0 commit comments

Comments
 (0)