about summary refs log tree commit diff
path: root/src/rt/rust_kernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_kernel.cpp')
-rw-r--r--src/rt/rust_kernel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp
index e74819ab318..896a4de660b 100644
--- a/src/rt/rust_kernel.cpp
+++ b/src/rt/rust_kernel.cpp
@@ -67,7 +67,8 @@ rust_kernel::create_scheduler(size_t num_threads) {
         sched = new (this, "rust_scheduler")
             rust_scheduler(this, srv, num_threads, id);
         bool is_new = sched_table
-            .insert(std::pair<rust_sched_id, rust_scheduler*>(id, sched)).second;
+            .insert(std::pair<rust_sched_id,
+                              rust_scheduler*>(id, sched)).second;
         A(this, is_new, "Reusing a sched id?");
     }
     sched->start_task_threads();