On 2/27/20 7:30 AM, Warner Losh wrote: > Author: imp > Date: Thu Feb 27 15:30:13 2020 > New Revision: 358392 > URL: https://svnweb.freebsd.org/changeset/base/358392 > > Log: > _Static_assert is to be preferred to CTASSERT. > > Document the existing prefernce that _Static_assert be used in preference > to the > old CTASSERT we used to use for compile time assertions.
Actually, I think what we want to use is static_assert(). The intention in userland C is that _Static_assert() is an internal keyword and <assert.h> adds static_assert() as an alias, similar to <stdalign.h> defining alignas, etc. I think what we should do for the kernel is have <sys/systm.h> define map static_assert to _Static_assert and replace existing _Static_assert usage with the proper spelling. -- John Baldwin _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
