1
Fork 0

rip out unused task pointers

This commit is contained in:
Niko Matsakis 2011-10-19 14:54:53 -07:00 committed by Brian Anderson
parent d9b23cb022
commit 4880065429
2 changed files with 12 additions and 12 deletions

View file

@ -559,8 +559,8 @@ void drop_port(rust_port *port) {
port->ref_count--;
}
extern "C" CDECL void
chan_send(rust_chan *chan, void *sptr) {
extern "C" CDECL
void chan_send(rust_chan *chan, void *sptr) {
chan->send(sptr);
}