From 08c088ce5a7fa8d2232207b6d73716bc9a6429cf Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 8 Jan 2018 16:14:54 +0100 Subject: [PATCH] util-math, util-memory: Formatting --- source/util-math.h | 1 - source/util-memory.h | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/util-math.h b/source/util-math.h index 35bd3a4..6add3d4 100644 --- a/source/util-math.h +++ b/source/util-math.h @@ -46,7 +46,6 @@ inline size_t GetNearestPowerOfTwoBelow(size_t v) { return 1ull << size_t(floor(log10(double(v)) / log10(2.0))); } - namespace util { __declspec(align(16)) struct vec3a : public vec3 { static void* vec3a::operator new(size_t count); diff --git a/source/util-memory.h b/source/util-memory.h index 3e98402..e324cd2 100644 --- a/source/util-memory.h +++ b/source/util-memory.h @@ -22,4 +22,5 @@ namespace util { void* malloc_aligned(size_t align, size_t size); void free_aligned(void* mem); -}; \ No newline at end of file +}; +