Skip to content

Commit b9a4a7b

Browse files
committed
---
yaml --- r: 104575 b: refs/heads/try c: 38c5e60 h: refs/heads/master i: 104573: 42aa94f 104571: 0be0c98 104567: 2087d0b 104559: 006e0db 104543: b3ee340 104511: 6a119f7 104447: cbf0a6d v: v3
1 parent 9150092 commit b9a4a7b

File tree

12 files changed

+15
-5
lines changed

12 files changed

+15
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 62f1d68439dcfd509eaca29887afa97f22938373
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6e7f170fedd3c526a643c0b2d13863acd982be02
5-
refs/heads/try: 9b9ab278fd6a69d117db94976e0b98ee55cd7e34
5+
refs/heads/try: 38c5e6004d66f0208fec2544a9b57ff655c9c1dc
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libextra/workcache.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#[allow(missing_doc)];
12+
#[allow(visible_private_types)];
1213

1314
use serialize::json;
1415
use serialize::json::ToJson;

branches/try/src/libgreen/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173

174174
// NB this does *not* include globs, please keep it that way.
175175
#[feature(macro_rules)];
176+
#[allow(visible_private_types)];
176177

177178
use std::mem::replace;
178179
use std::os;

branches/try/src/libnative/io/timer_timerfd.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ pub struct Timer {
4646
priv on_worker: bool,
4747
}
4848

49+
#[allow(visible_private_types)]
4950
pub enum Req {
5051
NewTimer(libc::c_int, Chan<()>, bool, imp::itimerspec),
5152
RemoveTimer(libc::c_int, Chan<()>),

branches/try/src/librustc/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ This API is completely unstable and subject to change.
3030
#[feature(macro_rules, globs, struct_variant, managed_boxes)];
3131
#[feature(quote)];
3232

33+
#[allow(visible_private_types)];
34+
3335
extern crate extra;
3436
extern crate flate;
3537
extern crate arena;

branches/try/src/librustdoc/html/render.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub enum ExternalLocation {
9999
}
100100

101101
/// Different ways an implementor of a trait can be rendered.
102-
enum Implementor {
102+
pub enum Implementor {
103103
/// Paths are displayed specially by omitting the `impl XX for` cruft
104104
PathType(clean::Type),
105105
/// This is the generic representation of a trait implementor, used for

branches/try/src/librustuv/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ via `close` and `delete` methods.
4141

4242
#[feature(macro_rules)];
4343
#[deny(unused_result, unused_must_use)];
44+
#[allow(visible_private_types)];
4445

4546
#[cfg(test)] extern crate green;
4647

branches/try/src/libstd/rt/local.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pub trait Local<Borrowed> {
2424
unsafe fn try_unsafe_borrow() -> Option<*mut Self>;
2525
}
2626

27+
#[allow(visible_private_types)]
2728
impl Local<local_ptr::Borrowed<Task>> for Task {
2829
#[inline]
2930
fn put(value: ~Task) { unsafe { local_ptr::put(value) } }
@@ -127,4 +128,3 @@ mod test {
127128
}
128129

129130
}
130-

branches/try/src/libstd/rt/local_ptr.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@ pub mod native {
366366

367367
#[inline]
368368
#[cfg(not(test))]
369+
#[allow(visible_private_types)]
369370
pub fn maybe_tls_key() -> Option<tls::Key> {
370371
unsafe {
371372
// NB: This is a little racy because, while the key is

branches/try/src/libstd/rt/unwind.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ fn rust_exception_class() -> uw::_Unwind_Exception_Class {
280280

281281
#[cfg(not(target_arch = "arm"), not(test))]
282282
#[doc(hidden)]
283+
#[allow(visible_private_types)]
283284
pub mod eabi {
284285
use uw = super::libunwind;
285286
use libc::c_int;
@@ -333,6 +334,7 @@ pub mod eabi {
333334
// ARM EHABI uses a slightly different personality routine signature,
334335
// but otherwise works the same.
335336
#[cfg(target_arch = "arm", not(test))]
337+
#[allow(visible_private_types)]
336338
pub mod eabi {
337339
use uw = super::libunwind;
338340
use libc::c_int;

branches/try/src/libsyntax/abi.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub enum Architecture {
4848
static IntelBits: u32 = (1 << (X86 as uint)) | (1 << (X86_64 as uint));
4949
static ArmBits: u32 = (1 << (Arm as uint));
5050

51-
struct AbiData {
51+
pub struct AbiData {
5252
abi: Abi,
5353

5454
// Name of this ABI as we like it called.
@@ -59,7 +59,7 @@ struct AbiData {
5959
abi_arch: AbiArchitecture
6060
}
6161

62-
enum AbiArchitecture {
62+
pub enum AbiArchitecture {
6363
RustArch, // Not a real ABI (e.g., intrinsic)
6464
AllArch, // An ABI that specifies cross-platform defaults (e.g., "C")
6565
Archs(u32) // Multiple architectures (bitset)

branches/try/src/libsyntax/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This API is completely unstable and subject to change.
3131
#[feature(quote)];
3232

3333
#[deny(non_camel_case_types)];
34+
#[allow(visible_private_types)];
3435

3536
extern crate serialize;
3637
extern crate term;

0 commit comments

Comments
 (0)