diff options
author | Chris Robinson <[email protected]> | 2019-06-06 00:37:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-06 00:37:00 -0700 |
commit | 585b0cf3bed7d1c5720633eb7e5358a9fca865f6 (patch) | |
tree | 1aa5d6b51afe900d2a1cbb069202c368a46f947a /common/almalloc.h | |
parent | a7be53104953ac67081db8e539d423509f44f801 (diff) |
Remove the DEF_ALIGN macro
Diffstat (limited to 'common/almalloc.h')
-rw-r--r-- | common/almalloc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/almalloc.h b/common/almalloc.h index 74aa4afe..7b74b659 100644 --- a/common/almalloc.h +++ b/common/almalloc.h @@ -7,8 +7,6 @@ #include <limits> #include <algorithm> -/* Minimum alignment required by posix_memalign. */ -#define DEF_ALIGN sizeof(void*) void *al_malloc(size_t alignment, size_t size); void *al_calloc(size_t alignment, size_t size); |