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