Skip to content

Commit 07fe561

Browse files
committed
Remove import and export from intrinsic.rs
1 parent cd39560 commit 07fe561

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/rustc/front/intrinsic.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33

44
mod intrinsic {
55

6-
import rusti::visit_tydesc;
7-
export TyVisitor, get_tydesc, visit_tydesc, TyDesc;
6+
pub use rusti::visit_tydesc;
87

98
// FIXME (#2712): remove this when the interface has settled and the
109
// version in sys is no longer present.
11-
fn get_tydesc<T>() -> *TyDesc {
10+
pub fn get_tydesc<T>() -> *TyDesc {
1211
rusti::get_tydesc::<T>() as *TyDesc
1312
}
1413

15-
enum TyDesc = {
14+
pub enum TyDesc = {
1615
first_param: **u8,
1716
size: uint,
1817
align: uint

0 commit comments

Comments
 (0)