$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Isaac Dupree (isaacdupree_at_[hidden])
Date: 2008-08-08 20:35:01
This documentation is self-contradictory:
http://www.boost.org/doc/libs/1_35_0/libs/preprocessor/doc/ref/add.html
"This macro is the most efficient when x is less than or 
equal to y.  However, the efficiency gain is not worth 
actually comparing the two arguments prior to invocation. 
In other words, x should be the addend that is most likely 
to be the largest of the two operands."
The first sentence says we want (x <= y); the last sentence 
says we want (x > y).  Which is it? :-)
-Isaac