Skip to content

Commit 7ac0fe5

Browse files
committed
Cleanup dox mess
1 parent a8a817a commit 7ac0fe5

File tree

47 files changed

+709
-740
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+709
-740
lines changed

src/cloudabi/mod.rs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use dox::Option;
2-
31
pub type int8_t = i8;
42
pub type int16_t = i16;
53
pub type int32_t = i32;
@@ -124,14 +122,14 @@ pub const SOCK_STREAM: ::c_int = 130;
124122

125123
#[cfg_attr(feature = "extra_traits", derive(Debug))]
126124
pub enum FILE {}
127-
impl ::dox::Copy for FILE {}
128-
impl ::dox::Clone for FILE {
125+
impl ::Copy for FILE {}
126+
impl ::Clone for FILE {
129127
fn clone(&self) -> FILE { *self }
130128
}
131129
#[cfg_attr(feature = "extra_traits", derive(Debug))]
132130
pub enum fpos_t {} // TODO: fill this out with a struct
133-
impl ::dox::Copy for fpos_t {}
134-
impl ::dox::Clone for fpos_t {
131+
impl ::Copy for fpos_t {}
132+
impl ::Clone for fpos_t {
135133
fn clone(&self) -> fpos_t { *self }
136134
}
137135

@@ -281,7 +279,7 @@ extern {
281279
) -> ::c_int;
282280
pub fn pthread_key_create(
283281
key: *mut pthread_key_t,
284-
dtor: Option<unsafe extern fn(*mut ::c_void)>,
282+
dtor: ::Option<unsafe extern fn(*mut ::c_void)>,
285283
) -> ::c_int;
286284
pub fn pthread_key_delete(key: pthread_key_t) -> ::c_int;
287285
pub fn pthread_setspecific(

0 commit comments

Comments
 (0)