diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index fc7b845b1..a4c40558d 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -3,15 +3,26 @@
-A new macro has been added to epicsAssert.h which performs assertion checks +at compile-time. STATIC_ASSERT(expr) can only be used when +expr can be evaluated by the compiler, and will cause the +compilation to fail if it evaluates to false. The resulting compiler error +message might appear a little obscure, but it does provide some explanation and +contains the line where the failure was discovered. Future versions of the C++ +standard will probably contain a similar facility static_assert(expr, +message) but will require compiler support to be implemented.
+The definitions for the macros YES, NO, NONE,