From fdc582b619c36d54de76bb92ca54bd8c5a5cc261 Mon Sep 17 00:00:00 2001 From: Amaury Chamayou Date: Thu, 27 Feb 2020 16:21:24 +0000 Subject: [PATCH] Fix formatting --- src/mem/largealloc.h | 2 +- src/test/func/two_alloc_types/main.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mem/largealloc.h b/src/mem/largealloc.h index e4f3887..583acc4 100644 --- a/src/mem/largealloc.h +++ b/src/mem/largealloc.h @@ -8,8 +8,8 @@ #include "baseslab.h" #include "sizeclass.h" -#include #include +#include namespace snmalloc { diff --git a/src/test/func/two_alloc_types/main.cc b/src/test/func/two_alloc_types/main.cc index 119e1e5..ef681bd 100644 --- a/src/test/func/two_alloc_types/main.cc +++ b/src/test/func/two_alloc_types/main.cc @@ -19,7 +19,7 @@ extern "C" const void* __oe_get_heap_end() extern "C" void* oe_memset_s(void* p, size_t p_size, int c, size_t size) { - (void) p_size; + (void)p_size; return memset(p, c, size); }