diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2014-09-19 12:30:07 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2014-09-22 20:05:45 -0700 |
| commit | e9ad12c0cae5c43ada6641c7dc840a0fbe5010a2 (patch) | |
| tree | 21b3e62d447bda4ccda606894edb66ca965bccee /src/libnative/io | |
| parent | 43fd619819b334b8548dca98797bd4c8078636cb (diff) | |
| download | rust-e9ad12c0cae5c43ada6641c7dc840a0fbe5010a2.tar.gz rust-e9ad12c0cae5c43ada6641c7dc840a0fbe5010a2.zip | |
librustc: Forbid private types in public APIs.
This breaks code like:
struct Foo {
...
}
pub fn make_foo() -> Foo {
...
}
Change this code to:
pub struct Foo { // note `pub`
...
}
pub fn make_foo() -> Foo {
...
}
The `visible_private_types` lint has been removed, since it is now an
error to attempt to expose a private type in a public API. In its place
a `#[feature(visible_private_types)]` gate has been added.
Closes #16463.
RFC #48.
[breaking-change]
Diffstat (limited to 'src/libnative/io')
| -rw-r--r-- | src/libnative/io/timer_unix.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libnative/io/timer_unix.rs b/src/libnative/io/timer_unix.rs index 0a5de325c09..8c6fd83a76b 100644 --- a/src/libnative/io/timer_unix.rs +++ b/src/libnative/io/timer_unix.rs @@ -66,7 +66,7 @@ pub struct Timer { inner: Option<Box<Inner>>, } -struct Inner { +pub struct Inner { cb: Option<Box<rtio::Callback + Send>>, interval: u64, repeat: bool, @@ -74,7 +74,6 @@ struct Inner { id: uint, } -#[allow(visible_private_types)] pub enum Req { // Add a new timer to the helper thread. NewTimer(Box<Inner>), |
