mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
f74ae3257a
cast_const() et. al. are supposed to be a constant expression, so you can do things like: static char *p = cast_const(char *, (const char *)"hello"); Unfortunately, a cast to intptr_t and arithmetic makes suncc reject it as a constant expression. We need the cast, because (1) the expression could be a void *, so we can't just add to it, and (2) gcc complains with -Wcast-qual without it. So instead of adding BUILD_BUG_OR_ZERO, we use a ? :, which keeps everyone happy. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (Imported from CCAN commit 74859ab18b10aaf990848e49d7789ff5c6cf96c6) Autobuild-User: Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date: Thu Mar 29 08:18:57 CEST 2012 on sn-devel-104 |
||
---|---|---|
.. | ||
array_size | ||
asearch | ||
build_assert | ||
cast | ||
check_type | ||
compiler | ||
container_of | ||
endian | ||
failtest | ||
hash | ||
htable | ||
ilog | ||
likely | ||
list | ||
read_write_all | ||
str | ||
strset/tools | ||
tally | ||
tcon | ||
time | ||
tlist | ||
typesafe_cb | ||
libccan.m4 | ||
README | ||
wscript |
These files are from the CCAN project (http://ccan.ozlabs.org); the _info and LICENSE files in each directory indicate their (separate) licenses. I'm trying to keep them in sync with the upstream versions as much as possible, so please be careful! Thanks! Rusty Russell <rusty@rustcorp.com.au>