about summary refs log tree commit diff
path: root/src/rt/rust_uv.cpp
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-22 09:36:30 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-24 14:22:35 -0700
commit188e471339dfe652b8ff9f3bbe4cc262a040c584 (patch)
treed7267619b1909f2deaf319c560a64d667d141d35 /src/rt/rust_uv.cpp
parentd425218395b4a4dd7c6e4f3d680447efd2a3abc6 (diff)
downloadrust-188e471339dfe652b8ff9f3bbe4cc262a040c584.tar.gz
rust-188e471339dfe652b8ff9f3bbe4cc262a040c584.zip
Another round of test fixes and merge conflicts
Diffstat (limited to 'src/rt/rust_uv.cpp')
-rw-r--r--src/rt/rust_uv.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/rt/rust_uv.cpp b/src/rt/rust_uv.cpp
index c463cf039d3..0cbbb58d02c 100644
--- a/src/rt/rust_uv.cpp
+++ b/src/rt/rust_uv.cpp
@@ -466,16 +466,6 @@ rust_uv_addrinfo_as_sockaddr_in6(addrinfo* input) {
     return (sockaddr_in6*)input->ai_addr;
 }
 
-extern "C" uv_idle_t*
-rust_uv_idle_new() {
-  return new uv_idle_t;
-}
-
-extern "C" void
-rust_uv_idle_delete(uv_idle_t* handle) {
-  delete handle;
-}
-
 extern "C" int
 rust_uv_idle_init(uv_loop_t* loop, uv_idle_t* idle) {
   return uv_idle_init(loop, idle);