about summary refs log tree commit diff
path: root/src/rt/rust_refcount.h
diff options
context:
space:
mode:
authorJon Morton <jonanin@gmail.com>2012-04-03 04:37:00 -0500
committerBrian Anderson <banderson@mozilla.com>2012-04-03 16:02:38 -0700
commit386069f39ea17c594e86675fa00d878a6455137f (patch)
tree63ec677f0c2de822971f343441b71d01dd161f2f /src/rt/rust_refcount.h
parent632a4c9326561de2bd9d9ded19a82f22678a0cf4 (diff)
downloadrust-386069f39ea17c594e86675fa00d878a6455137f.tar.gz
rust-386069f39ea17c594e86675fa00d878a6455137f.zip
actually remove memory.h; include cleanups
Diffstat (limited to 'src/rt/rust_refcount.h')
-rw-r--r--src/rt/rust_refcount.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rt/rust_refcount.h b/src/rt/rust_refcount.h
index 0e70af31aff..b8067cf6941 100644
--- a/src/rt/rust_refcount.h
+++ b/src/rt/rust_refcount.h
@@ -26,6 +26,4 @@ public:                                                                    \
    void deref() { if(0 == sync::decrement(ref_count)) { delete_this(); } } \
    intptr_t get_ref_count() { return sync::read(ref_count); }
 
-
-
 #endif