Apply r228478 (CTASSERT => _Static_assert()) to stand bootstrap.h
Reported by: GCC (it doesn't like the unused array) Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
444301c25e
commit
a840a2cd0c
@ -330,10 +330,8 @@ void dev_cleanup(void);
|
||||
|
||||
time_t time(time_t *tloc);
|
||||
|
||||
#ifndef CTASSERT /* Allow lint to override */
|
||||
#define CTASSERT(x) _CTASSERT(x, __LINE__)
|
||||
#define _CTASSERT(x, y) __CTASSERT(x, y)
|
||||
#define __CTASSERT(x, y) typedef char __assert ## y[(x) ? 1 : -1]
|
||||
#ifndef CTASSERT
|
||||
#define CTASSERT(x) _Static_assert(x, "compile-time assertion failed")
|
||||
#endif
|
||||
|
||||
#endif /* !_BOOTSTRAP_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user