util-math, util-memory: Formatting

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2018-01-08 16:14:54 +01:00
parent a3d859fb4f
commit 08c088ce5a
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -22,4 +22,5 @@
namespace util {
void* malloc_aligned(size_t align, size_t size);
void free_aligned(void* mem);
};
};