File tree 2 files changed +0
-5
lines changed
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,6 @@ mod uint {
137
137
#[path = "uint-template"]
138
138
mod u8 {
139
139
pub use inst::is_ascii;
140
-
141
140
#[path = "u8.rs"]
142
141
mod inst;
143
142
}
@@ -170,7 +169,6 @@ mod float;
170
169
mod f32;
171
170
mod f64;
172
171
mod str;
173
- #[legacy_exports]
174
172
mod ptr;
175
173
#[legacy_exports]
176
174
mod vec;
@@ -186,7 +184,6 @@ mod uniq;
186
184
mod ops;
187
185
mod cmp;
188
186
mod num;
189
- #[legacy_exports]
190
187
mod hash;
191
188
#[legacy_exports]
192
189
mod either;
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ use libc::{c_void, size_t};
6
6
#[ nolink]
7
7
#[ abi = "cdecl" ]
8
8
extern mod libc_ {
9
- #[ legacy_exports] ;
10
9
#[ rust_stack]
11
10
fn memcpy ( dest : * mut c_void , src : * const c_void ,
12
11
n : libc:: size_t ) -> * c_void ;
@@ -22,7 +21,6 @@ extern mod libc_ {
22
21
23
22
#[ abi = "rust-intrinsic" ]
24
23
extern mod rusti {
25
- #[ legacy_exports] ;
26
24
fn addr_of < T > ( val : T ) -> * T ;
27
25
}
28
26
You can’t perform that action at this time.
0 commit comments