Add export{} syntax to encapsulate things that should be abstract

This commit is contained in:
Tim Chevalier 2012-01-23 08:57:51 -08:00
parent 69ffb4e3ae
commit a3c31a08e5
3 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
import syntax::ast;
import util::common::*;
export cstore;
export cstore::{};
export cnum_map;
export crate_metadata;
export mk_cstore;

View file

@ -26,8 +26,8 @@
export send;
export recv;
export chan;
export port;
export chan::{};
export port::{};
#[abi = "cdecl"]
native mod rustrt {

View file

@ -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;