New commits:
commit c65f3b57ed5ec54de73c1e3be9958fc5845c7db2
Author: Andrew Cagney <[email protected]>
Date: Wed Aug 9 14:08:45 2017 -0400
include: simplify passert() et.al. by using the C99 'bool' type
Replace:
if (ASSERTION) { } else { ... }
with:
bool b = ASSERTION; if (!b) { ... }
(not to be confused with 'int b = ASSERTION; ...' which is not equivalent).
Don't wrap ASSERTION in paren as that would suppress -Wparen.
_______________________________________________
Swan-commit mailing list
[email protected]
https://lists.libreswan.org/mailman/listinfo/swan-commit