summaryrefslogtreecommitdiff
path: root/libs/preprocessor
diff options
context:
space:
mode:
Diffstat (limited to 'libs/preprocessor')
-rw-r--r--libs/preprocessor/doc/headers.html2
-rw-r--r--libs/preprocessor/doc/headers/config/variadics.html14
-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
8 files changed, 18 insertions, 15 deletions
diff --git a/libs/preprocessor/doc/headers.html b/libs/preprocessor/doc/headers.html
index e96b25e83..58f33dba4 100644
--- a/libs/preprocessor/doc/headers.html
+++ b/libs/preprocessor/doc/headers.html
@@ -54,7 +54,7 @@
<li class="ps"><a href="headers/comparison/not_equal.html">not_equal.hpp</a></li>
<li>config/</li>
<li class="ps"><a href="headers/config/limits.html">limits.hpp</a></li>
- <li class="ps"><a href="headers/config/variadics.html">variadics.hpp</a></li>
+ <li class="ps"><a href="headers/config/variadics.html">config.hpp</a></li>
<li><a href="headers/control.html">control.hpp</a></li>
<li>control/</li>
<li class="ps"><a href="headers/control/deduce_d.html">deduce_d.hpp</a></li>
diff --git a/libs/preprocessor/doc/headers/config/variadics.html b/libs/preprocessor/doc/headers/config/variadics.html
index c99268525..334f053e1 100644
--- a/libs/preprocessor/doc/headers/config/variadics.html
+++ b/libs/preprocessor/doc/headers/config/variadics.html
@@ -1,19 +1,19 @@
<html>
<head>
- <title>config/variadics.hpp</title>
+ <title>config/config.hpp</title>
<link rel="stylesheet" type="text/css" href="../../styles.css">
</head>
<body>
<div style="margin-left: 0px;">
- The <b>config/variadics.hpp</b>
-header defines a macro for determining variadic macro support. The file
-is automatically included when needed internally. The end-user can
-include it also in order to use the macro. </div>
+ The <b>config/config.hpp</b>
+header defines internal configuration macros as well as a macro for determining variadic macro support. The file
+is automatically included whenever any Boost PP macros are used. The end-user can manually
+include it in order to use the BOOST_PP_VARIADICS macro, but normally should never have to do so. </div>
<h4>
Usage
</h4>
<div class="code">
- #include <b>&lt;boost/preprocessor/config/variadics.hpp&gt;</b>
+ #include <b>&lt;boost/preprocessor/config/config.hpp&gt;</b>
</div>
<h4>
Contents
@@ -21,7 +21,7 @@ include it also in order to use the macro. </div>
<ul>
<li><a href="../../ref/variadics.html">BOOST_PP_VARIADICS</a></li></ul>
<hr size="1">
- <div style="margin-left: 0px;"><i>© Copyright Edward Diener 2011</i>
+ <div style="margin-left: 0px;"><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
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>