From 4ad12f33cfb85be1db3dbbba9ebe7aa64517cdfd Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Thu, 17 Jan 2019 16:47:55 +0000 Subject: [PATCH] Fix spacing from a bad clang format. --- src/mem/allocconfig.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mem/allocconfig.h b/src/mem/allocconfig.h index 7ffbc4b..fd7fb53 100644 --- a/src/mem/allocconfig.h +++ b/src/mem/allocconfig.h @@ -81,10 +81,10 @@ namespace snmalloc // Used to keep Superslab metadata committed. static constexpr size_t OS_PAGE_SIZE = 0x1000; static constexpr size_t PAGE_ALIGNED_SIZE = OS_PAGE_SIZE << INTERMEDIATE_BITS; -// Some system headers (e.g. Linux' sys/user.h, FreeBSD's machine/param.h) -// define `PAGE_SIZE` as a macro. We don't use `PAGE_SIZE` as our variable -// name, to avoid conflicts, but if we do see a macro definition then check -// that our value matches the platform's expected value. + // Some system headers (e.g. Linux' sys/user.h, FreeBSD's machine/param.h) + // define `PAGE_SIZE` as a macro. We don't use `PAGE_SIZE` as our variable + // name, to avoid conflicts, but if we do see a macro definition then check + // that our value matches the platform's expected value. #ifdef PAGE_SIZE static_assert( PAGE_SIZE == OS_PAGE_SIZE,