diff options
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lisp.h b/src/lisp.h index 97c8d9fe84..29ed9fe8a2 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1429,13 +1429,6 @@ struct Lisp_Vector Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER]; }; -/* C11 prohibits alignof (struct Lisp_Vector), so compute it manually. */ -enum - { - ALIGNOF_STRUCT_LISP_VECTOR - = alignof (union { struct vectorlike_header a; Lisp_Object b; }) - }; - /* A boolvector is a kind of vectorlike, with contents like a string. */ struct Lisp_Bool_Vector |