From 8970e708060916246a8cddcac148deb5494327d8 Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Tue, 2 Jul 2019 15:44:10 +0100 Subject: [PATCH] Clangformat --- src/mem/alloc.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mem/alloc.h b/src/mem/alloc.h index 42e58e9..5e09d70 100644 --- a/src/mem/alloc.h +++ b/src/mem/alloc.h @@ -837,8 +837,7 @@ namespace snmalloc { // Manufacture an allocation to prime the queue // Using an actual allocation removes a conditional of a critical path. - Remote* dummy = - reinterpret_cast(alloc(MIN_ALLOC_SIZE)); + Remote* dummy = reinterpret_cast(alloc(MIN_ALLOC_SIZE)); dummy->set_target_id(id()); message_queue().init(dummy); }