summaryrefslogtreecommitdiffstats
path: root/libdimension
diff options
context:
space:
mode:
Diffstat (limited to 'libdimension')
-rw-r--r--libdimension/compiler-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdimension/compiler-internal.h b/libdimension/compiler-internal.h
index 8b35b4a..40e749d 100644
--- a/libdimension/compiler-internal.h
+++ b/libdimension/compiler-internal.h
@@ -87,6 +87,6 @@
#define DMNSN_ALLOCA_IMPL(var, size, ctr) DMNSN_ALLOCA_IMPL2(var, size, ctr)
-#define DMNSN_ALLOCA_IMPL2(var, size, ctr) \
+#define DMNSN_ALLOCA_IMPL2(var, size, ctr) \
alignas(max_align_t) char dmnsn_alloca##ctr[size]; \
var = (void *)dmnsn_alloca##ctr