Add export{} syntax to encapsulate things that should be abstract
This commit is contained in:
parent
69ffb4e3ae
commit
a3c31a08e5
@ -6,7 +6,7 @@
|
||||
import syntax::ast;
|
||||
import util::common::*;
|
||||
|
||||
export cstore;
|
||||
export cstore::{};
|
||||
export cnum_map;
|
||||
export crate_metadata;
|
||||
export mk_cstore;
|
||||
|
@ -26,8 +26,8 @@
|
||||
|
||||
export send;
|
||||
export recv;
|
||||
export chan;
|
||||
export port;
|
||||
export chan::{};
|
||||
export port::{};
|
||||
|
||||
#[abi = "cdecl"]
|
||||
native mod rustrt {
|
||||
|
@ -8,7 +8,7 @@
|
||||
export c_int, c_uint, long, longlong, unsigned, ulong, ulonglong;
|
||||
export intptr_t, uintptr_t;
|
||||
export uint32_t;
|
||||
export void;
|
||||
export void::{};
|
||||
export c_float, c_double;
|
||||
export size_t, ssize_t;
|
||||
export off_t, fd_t, pid_t;
|
||||
|
Loading…
Reference in New Issue
Block a user