about summary refs log tree commit diff
path: root/src/rt/rust_cc.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-03-31 23:12:06 -0700
committerBrian Anderson <banderson@mozilla.com>2012-03-31 23:12:06 -0700
commit21064637ed8b8259d1305f21ace12c40b9561706 (patch)
treec402d24572a9b4610930106d90358c1aeba2625a /src/rt/rust_cc.cpp
parentcf0c4cd7d2918205c13df38c4a62f93e1c72c1ac (diff)
downloadrust-21064637ed8b8259d1305f21ace12c40b9561706.tar.gz
rust-21064637ed8b8259d1305f21ace12c40b9561706.zip
rt: Fix whitespace
Diffstat (limited to 'src/rt/rust_cc.cpp')
-rw-r--r--src/rt/rust_cc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rt/rust_cc.cpp b/src/rt/rust_cc.cpp
index 7403c077d5d..b0a1804d096 100644
--- a/src/rt/rust_cc.cpp
+++ b/src/rt/rust_cc.cpp
@@ -210,11 +210,11 @@ irc::compute_ircs(rust_task *task, irc_map &ircs) {
         type_desc *tydesc = box->td;
         uint8_t *body = (uint8_t*) box_body(box);
 
-        LOG(task, gc, 
+        LOG(task, gc,
             "determining internal ref counts: "
             "box=%p tydesc=%p body=%p",
             box, tydesc, body);
-        
+
         shape::arena arena;
         shape::type_param *params =
             shape::type_param::from_tydesc_and_data(tydesc, body, arena);
@@ -425,7 +425,7 @@ void
 mark::do_mark(rust_task *task,
               const std::vector<rust_opaque_box *> &roots,
               std::set<rust_opaque_box *> &marked) {
-    std::vector<rust_opaque_box *>::const_iterator 
+    std::vector<rust_opaque_box *>::const_iterator
       begin(roots.begin()),
       end(roots.end());
     while (begin != end) {