summaryrefslogtreecommitdiff
path: root/libs/preprocessor/doc/ref
diff options
context:
space:
mode:
Diffstat (limited to 'libs/preprocessor/doc/ref')
-rw-r--r--libs/preprocessor/doc/ref/add.html2
-rw-r--r--libs/preprocessor/doc/ref/add_d.html2
-rw-r--r--libs/preprocessor/doc/ref/mul.html2
-rw-r--r--libs/preprocessor/doc/ref/mul_d.html2
-rw-r--r--libs/preprocessor/doc/ref/variadics.html6
-rw-r--r--libs/preprocessor/doc/ref/while_d_macros.html3
6 files changed, 10 insertions, 7 deletions
diff --git a/libs/preprocessor/doc/ref/add.html b/libs/preprocessor/doc/ref/add.html
index a6681d247..569f07e9d 100644
--- a/libs/preprocessor/doc/ref/add.html
+++ b/libs/preprocessor/doc/ref/add.html
@@ -34,7 +34,7 @@
It is more efficient, however, to use <b>BOOST_PP_ADD_D</b> in such a situation.
</div>
<div>
- This macro is the most efficient when <i>x</i> is less than or equal to <i>y</i>.&nbsp;
+ This macro is the most efficient when <i>x</i> is greater than or equal to <i>y</i>.&nbsp;
However, the efficiency gain is not worth actually comparing the two arguments prior to invocation.&nbsp;
In other words, <i>x</i> should be the addend that is <i>most likely</i> to be the largest of the two operands.
</div>
diff --git a/libs/preprocessor/doc/ref/add_d.html b/libs/preprocessor/doc/ref/add_d.html
index e4ead2cab..26c46a095 100644
--- a/libs/preprocessor/doc/ref/add_d.html
+++ b/libs/preprocessor/doc/ref/add_d.html
@@ -34,7 +34,7 @@
If the sum of <i>x</i> and <i>y</i> is greater than <b>BOOST_PP_LIMIT_MAG</b>, the result is saturated to <b>BOOST_PP_LIMIT_MAG</b>.
</div>
<div>
- This macro is the most efficient when <i>x</i> is less than or equal to <i>y</i>.&nbsp;
+ This macro is the most efficient when <i>x</i> is greater than or equal to <i>y</i>.&nbsp;
However, the efficiency gain is not worth actually comparing the two arguments prior to invocation.&nbsp;
In other words, <i>x</i> should be the addend that is <i>most likely</i> to be the largest of the two operands.
</div>
diff --git a/libs/preprocessor/doc/ref/mul.html b/libs/preprocessor/doc/ref/mul.html
index 2c2ce1a17..174d88b5b 100644
--- a/libs/preprocessor/doc/ref/mul.html
+++ b/libs/preprocessor/doc/ref/mul.html
@@ -34,7 +34,7 @@
It is more efficient, however, to use <b>BOOST_PP_MUL_D</b> in such a situation.
</div>
<div>
- This macro is the most efficient when <i>x</i> is less than or equal to <i>y</i>.&nbsp;
+ This macro is the most efficient when <i>x</i> is greater than or equal to <i>y</i>.&nbsp;
However, the efficiency gain is not worth actually comparing the two arguments prior to invocation.&nbsp;
In other words, <i>x</i> should be the value that is <i>most likely</i> to be the largest of the two operands.
</div>
diff --git a/libs/preprocessor/doc/ref/mul_d.html b/libs/preprocessor/doc/ref/mul_d.html
index 188191216..599fb85b4 100644
--- a/libs/preprocessor/doc/ref/mul_d.html
+++ b/libs/preprocessor/doc/ref/mul_d.html
@@ -34,7 +34,7 @@
If the product of <i>x</i> and <i>y</i> is greater than <b>BOOST_PP_LIMIT_MAG</b>, the result is saturated to <b>BOOST_PP_LIMIT_MAG</b>.
</div>
<div>
- This macro is the most efficient when <i>x</i> is less than or equal to <i>y</i>.&nbsp;
+ This macro is the most efficient when <i>x</i> is greater than or equal to <i>y</i>.&nbsp;
However, the efficiency gain is not worth actually comparing the two arguments prior to invocation.&nbsp;
In other words, <i>x</i> should be the value that is <i>most likely</i> to be the largest of the two operands.
</div>
diff --git a/libs/preprocessor/doc/ref/variadics.html b/libs/preprocessor/doc/ref/variadics.html
index 3e40c1bbc..a08e8c58d 100644
--- a/libs/preprocessor/doc/ref/variadics.html
+++ b/libs/preprocessor/doc/ref/variadics.html
@@ -13,14 +13,14 @@
code to check for the presence of variadic macro support. It can be
used by the end-user for the same purpose. The macro equals 1 if
variadic macros are supported and 0 if they are not. </div><b>Requirements</b>
-<div> <b>Header:</b> &nbsp;<a href="../headers/config/variadics.html">&lt;boost/preprocessor/config/variadics.hpp&gt;</a>
+<div> <b>Header:</b> &nbsp;<a href="../headers/config/variadics.html">&lt;boost/preprocessor/config/config.hpp&gt;</a>
</div>
<h4>Sample Code</h4>
<div>
-<pre>#include &lt;<a href="../headers/config/variadics.html">boost/preprocessor/config/variadics.hpp</a>&gt;<br><br>#if <a href="variadics.html">BOOST_PP_VARIADICS</a><br>#define SOME_MACRO(...) // replacement list<br>#else<br>#define SOME_MACRO(param1,param2) // replacement list<br>#endif<br></pre>
+<pre>#include &lt;<a href="../headers/config/variadics.html">boost/preprocessor/config/config.hpp</a>&gt;<br><br>#if <a href="variadics.html">BOOST_PP_VARIADICS</a><br>#define SOME_MACRO(...) // replacement list<br>#else<br>#define SOME_MACRO(param1,param2) // replacement list<br>#endif<br></pre>
</div>
<hr size="1">
-<div style="margin-left: 0px;"> <i></i><i>© Copyright Edward Diener 2011</i> </div>
+<div style="margin-left: 0px;"> <i></i><i>© Copyright Edward Diener 2011,2014</i> </div>
<div style="margin-left: 0px;">
<p><small>Distributed under the Boost Software License, Version 1.0.
(See accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a>
diff --git a/libs/preprocessor/doc/ref/while_d_macros.html b/libs/preprocessor/doc/ref/while_d_macros.html
index 7d8a94588..6f4d23a16 100644
--- a/libs/preprocessor/doc/ref/while_d_macros.html
+++ b/libs/preprocessor/doc/ref/while_d_macros.html
@@ -29,10 +29,12 @@
</ul>
comparison<br>
<ul>
+ <li><a href="equal_d.html"><span style=" color: gray;">BOOST_PP_EQUAL_D</span></a></li>
<li><a href="greater_d.html"><span style=" color: gray;">BOOST_PP_GREATER_D</span></a></li>
<li><a href="greater_equal_d.html"><span style=" color: gray;">BOOST_PP_GREATER_EQUAL_D</span></a></li>
<li><a href="less_d.html"><span style=" color: gray;">BOOST_PP_LESS_D</span></a></li>
<li><a href="less_equal_d.html"><span style=" color: gray;">BOOST_PP_LESS_EQUAL_D</span></a></li>
+ <li><a href="not_equal_d.html"><span style=" color: gray;">BOOST_PP_NOT_EQUAL_D</span></a></li>
</ul>
control<br>
<ul>
@@ -51,6 +53,7 @@
<li><a href="list_fold_right_d.html"><span style=" color: gray;">BOOST_PP_LIST_FOLD_RIGHT_d</span></a></li>
<li><a href="list_rest_n_d.html"><span style=" color: gray;">BOOST_PP_LIST_REST_N_D</span></a></li>
<li><a href="list_reverse_d.html"><span style=" color: gray;">BOOST_PP_LIST_REVERSE_D</span></a></li>
+ <li><a href="list_size_d.html"><span style=" color: gray;">BOOST_PP_LIST_SIZE_D</span></a></li>
<li><a href="list_to_array_d.html"><span style=" color: gray;">BOOST_PP_LIST_TO_ARRAY_D</span></a></li>
<li><a href="list_transform_d.html"><span style=" color: gray;">BOOST_PP_LIST_TRANSFORM_D</span></a></li>
</ul>