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); }