$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r71256 - branches/pplib/variadics/libs/preprocessor/doc/ref
From: eldiener_at_[hidden]
Date: 2011-04-14 14:33:28
Author: eldiener
Date: 2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
New Revision: 71256
URL: http://svn.boost.org/trac/boost/changeset/71256
Log:
Doc correction
Text files modified: 
   branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat.html     |    28 +++++--------                           
   branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat_s.html   |    20 +++++-----                              
   branches/pplib/variadics/libs/preprocessor/doc/ref/seq_elem.html    |    41 +++++---------------                    
   branches/pplib/variadics/libs/preprocessor/doc/ref/seq_first_n.html |    30 ++++++---------                         
   branches/pplib/variadics/libs/preprocessor/doc/ref/seq_nil.html     |    42 ++++++---------------                   
   branches/pplib/variadics/libs/preprocessor/doc/ref/seq_rest_n.html  |    76 ++++++--------------------------------- 
   6 files changed, 68 insertions(+), 169 deletions(-)
Modified: branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat.html
==============================================================================
--- branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat.html	(original)
+++ branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat.html	2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
@@ -1,17 +1,18 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
-	<head>
-		<title>BOOST_PP_SEQ_CAT</title>
+<head>
+        <title>BOOST_PP_SEQ_CAT</title>
                 <link rel="stylesheet" type="text/css" href="../styles.css">
-	</head>
-	<body>
-		<div style="margin-left:  0px;">
+</head>
+<body>
+		<div style="margin-left: 0px;">
                         The <b>BOOST_PP_SEQ_CAT</b> macro concatenates all elements in a <i>seq</i>.
                 </div>
                 <h4>
                         Usage
                 </h4>
                 <div class="code">
-			<b>BOOST_PP_SEQ_CAT</b>(<i>list</i>)
+			<b>BOOST_PP_SEQ_CAT</b>(<i>seq</i>)
                 </div>
                 <h4>
                         Arguments
@@ -48,24 +49,17 @@
                         Sample Code
                 </h4>
                 <div>
-			<pre>
-#include <boost/preprocessor/seq/cat.hpp>
-
-#define SEQ (a)(b)(c)
-
-BOOST_PP_SEQ_CAT(SEQ) // expands to abc
-</pre>
+			<pre>#include <boost/preprocessor/seq/cat.hpp><br><br>#define SEQ (a)(b)(c)<br><br>BOOST_PP_SEQ_CAT(SEQ) // expands to abc<br></pre>
                 </div>
         <hr size="1">
         <div style="margin-left: 0px;">
                 <i>© Copyright Housemarque Oy 2002</i>
-		</br><i>© Copyright Paul Mensonides 2002</i>
+		<br><i>© Copyright Paul Mensonides 2002</i>
         </div>
         <div style="margin-left: 0px;">
                 <p><small>Distributed under the Boost Software License, Version 1.0. (See
                 accompanying file LICENSE_1_0.txt or
-		copy at <a href=
-		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
+		copy at www.boost.org/LICENSE_1_0.txt)</small></p>
         </div>
-	</body>
+</body>
 </html>
Modified: branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat_s.html
==============================================================================
--- branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat_s.html	(original)
+++ branches/pplib/variadics/libs/preprocessor/doc/ref/seq_cat_s.html	2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
@@ -1,10 +1,11 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
-	<head>
-		<title>BOOST_PP_SEQ_CAT_S</title>
+<head>
+        <title>BOOST_PP_SEQ_CAT_S</title>
                 <link rel="stylesheet" type="text/css" href="../styles.css">
-	</head>
-	<body>
-		<div style="margin-left:  0px;">
+</head>
+<body>
+		<div style="margin-left: 0px;">
                         The <b>BOOST_PP_SEQ_CAT_S</b> macro concatenates all elements in a <i>seq</i>.  
                         It reenters <b>BOOST_PP_SEQ_FOLD_LEFT</b> with maximum efficiency.
                 </div>
@@ -12,7 +13,7 @@
                         Usage
                 </h4>
                 <div class="code">
-			<b>BOOST_PP_SEQ_CAT_S</b>(<i>s</i>, <i>list</i>)
+			<b>BOOST_PP_SEQ_CAT_S</b>(<i>s</i>, <i>seq</i>)
                 </div>
                 <h4>
                         Arguments
@@ -49,13 +50,12 @@
         <hr size="1">
         <div style="margin-left: 0px;">
                 <i>© Copyright Housemarque Oy 2002</i>
-		</br><i>© Copyright Paul Mensonides 2002</i>
+		<br><i>© Copyright Paul Mensonides 2002</i>
         </div>
         <div style="margin-left: 0px;">
                 <p><small>Distributed under the Boost Software License, Version 1.0. (See
                 accompanying file LICENSE_1_0.txt or
-		copy at <a href=
-		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
+		copy at www.boost.org/LICENSE_1_0.txt)</small></p>
         </div>
-	</body>
+</body>
 </html>
Modified: branches/pplib/variadics/libs/preprocessor/doc/ref/seq_elem.html
==============================================================================
--- branches/pplib/variadics/libs/preprocessor/doc/ref/seq_elem.html	(original)
+++ branches/pplib/variadics/libs/preprocessor/doc/ref/seq_elem.html	2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
@@ -1,17 +1,18 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
-	<head>
-		<title>BOOST_PP_SEQ_ELEM</title>
+<head>
+        <title>BOOST_PP_SEQ_ELEM</title>
                 <link rel="stylesheet" type="text/css" href="../styles.css">
-	</head>
-	<body>
-		<div style="margin-left:  0px;">
+</head>
+<body>
+		<div style="margin-left: 0px;">
                         The <b>BOOST_PP_SEQ_ELEM</b> macro extracts an element from a <i>seq</i>.
                 </div>
                 <h4>
                         Usage
                 </h4>
                 <div class="code">
-			<b>BOOST_PP_SEQ_ELEM</b>(<i>i</i>, <i>list</i>)
+			<b>BOOST_PP_SEQ_ELEM</b>(<i>i</i>, <i>seq</i>)
                 </div>
                 <h4>
                         Arguments
@@ -43,37 +44,17 @@
                         Sample Code
                 </h4>
                 <div>
-			<pre>
-#include <boost/preprocessor/seq/elem.hpp>
-
-BOOST_PP_SEQ_ELEM(1, (a)(b)(c)) // expands to b
-
-#define SEQ \
-   (0)(1)(2)(3)(4)(5)(6)(7)(8)(9) \
-   (10)(11)(12)(13)(14)(15)(16)(17)(18)(19) \
-   (20)(21)(22)(23)(24)(25)(26)(27)(28)(29) \
-   (30)(31)(32)(33)(34)(35)(36)(37)(38)(39) \
-   (40)(41)(42)(43)(44)(45)(46)(47)(48)(49) \
-   (50)(51)(52)(53)(54)(55)(56)(57)(58)(59) \
-   (60)(61)(62)(63)(64)(65)(66)(67)(68)(69) \
-   (70)(71)(72)(73)(74)(75)(76)(77)(78)(79) \
-   (80)(81)(82)(83)(84)(85)(86)(87)(88)(89) \
-   (90)(91)(92)(93)(94)(95)(96)(97)(98)(99) \
-   /**/
-
-BOOST_PP_SEQ_ELEM(88, SEQ) // expands to 88
-</pre>
+			<pre>#include <boost/preprocessor/seq/elem.hpp><br><br>BOOST_PP_SEQ_ELEM(1, (a)(b)(c)) // expands to b<br><br>#define SEQ \<br>   (0)(1)(2)(3)(4)(5)(6)(7)(8)(9) \<br>   (10)(11)(12)(13)(14)(15)(16)(17)(18)(19) \<br>   (20)(21)(22)(23)(24)(25)(26)(27)(28)(29) \<br>   (30)(31)(32)(33)(34)(35)(36)(37)(38)(39) \<br>   (40)(41)(42)(43)(44)(45)(46)(47)(48)(49) \<br>   (50)(51)(52)(53)(54)(55)(56)(57)(58)(59) \<br>   (60)(61)(62)(63)(64)(65)(66)(67)(68)(69) \<br>   (70)(71)(72)(73)(74)(75)(76)(77)(78)(79) \<br>   (80)(81)(82)(83)(84)(85)(86)(87)(88)(89) \<br>   (90)(91)(92)(93)(94)(95)(96)(97)(98)(99) \<br>   /**/<br><br>BOOST_PP_SEQ_ELEM(88, SEQ) // expands to 88<br></pre>
                 </div>
         <hr size="1">
         <div style="margin-left: 0px;">
                 <i>© Copyright Housemarque Oy 2002</i>
-		</br><i>© Copyright Paul Mensonides 2002</i>
+		<br><i>© Copyright Paul Mensonides 2002</i>
         </div>
         <div style="margin-left: 0px;">
                 <p><small>Distributed under the Boost Software License, Version 1.0. (See
                 accompanying file LICENSE_1_0.txt or
-		copy at <a href=
-		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
+		copy at www.boost.org/LICENSE_1_0.txt)</small></p>
         </div>
-	</body>
+</body>
 </html>
Modified: branches/pplib/variadics/libs/preprocessor/doc/ref/seq_first_n.html
==============================================================================
--- branches/pplib/variadics/libs/preprocessor/doc/ref/seq_first_n.html	(original)
+++ branches/pplib/variadics/libs/preprocessor/doc/ref/seq_first_n.html	2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
@@ -1,10 +1,11 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
-	<head>
-		<title>BOOST_PP_SEQ_FIRST_N</title>
+<head>
+        <title>BOOST_PP_SEQ_FIRST_N</title>
                 <link rel="stylesheet" type="text/css" href="../styles.css">
-	</head>
-	<body>
-		<div style="margin-left:  0px;">
+</head>
+<body>
+		<div style="margin-left: 0px;">
                         The <b>BOOST_PP_SEQ_FIRST_N</b> macro expands to a <i>seq</i> of the first <i>n</i>
                         elements of a <i>seq</i>.
                 </div>
@@ -12,7 +13,7 @@
                         Usage
                 </h4>
                 <div class="code">
-			<b>BOOST_PP_SEQ_FIRST_N</b>(<i>n</i>, <i>list</i>)
+			<b>BOOST_PP_SEQ_FIRST_N</b>(<i>n</i>, <i>seq</i>)
                 </div>
                 <h4>
                         Arguments
@@ -22,7 +23,7 @@
                         <dd>
                                 The number of elements to extract.
                         </dd>
-			<dt>list</dt>
+			<dt>seq</dt>
                         <dd>
                                 The <i>seq</i> from which the elements are extracted.
                         </dd>
@@ -51,24 +52,17 @@
                         Sample Code
                 </h4>
                 <div>
-			<pre>
-#include <boost/preprocessor/seq/first_n.hpp>
-
-#define SEQ (a)(b)(c)(d)(e)
-
-BOOST_PP_SEQ_FIRST_N(2, SEQ) // expands to (a)(b)
-</pre>
+			<pre>#include <boost/preprocessor/seq/first_n.hpp><br><br>#define SEQ (a)(b)(c)(d)(e)<br><br>BOOST_PP_SEQ_FIRST_N(2, SEQ) // expands to (a)(b)<br></pre>
                 </div>
         <hr size="1">
         <div style="margin-left: 0px;">
                 <i>© Copyright Housemarque Oy 2002</i>
-		</br><i>© Copyright Paul Mensonides 2002</i>
+		<br><i>© Copyright Paul Mensonides 2002</i>
         </div>
         <div style="margin-left: 0px;">
                 <p><small>Distributed under the Boost Software License, Version 1.0. (See
                 accompanying file LICENSE_1_0.txt or
-		copy at <a href=
-		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
+		copy at www.boost.org/LICENSE_1_0.txt)</small></p>
         </div>
-	</body>
+</body>
 </html>
Modified: branches/pplib/variadics/libs/preprocessor/doc/ref/seq_nil.html
==============================================================================
--- branches/pplib/variadics/libs/preprocessor/doc/ref/seq_nil.html	(original)
+++ branches/pplib/variadics/libs/preprocessor/doc/ref/seq_nil.html	2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
@@ -1,12 +1,13 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
-	<head>
-		<title>BOOST_PP_SEQ_NIL</title>
+<head>
+        <title>BOOST_PP_SEQ_NIL</title>
                 <link rel="stylesheet" type="text/css" href="../styles.css">
-	</head>
-	<body>
-		<div style="margin-left:  0px;">
+</head>
+<body>
+		<div style="margin-left: 0px;">
                         The <b>BOOST_PP_SEQ_NIL</b> macro is a placeholder macro for an empty <i>seq</i>.  
-			It is only valid if it is elements are appended to the end of this empty 
+			It is only valid if it's elements are appended to the end of this empty 
                         "seq." 
                 </div>
                 <h4>
@@ -63,38 +64,19 @@
                         Sample Code
                 </h4>
                 <div>
-			<pre>
-#include <boost/preprocessor/facilities/empty.hpp>
-#include <boost/preprocessor/seq/push_back.hpp>
-#include <boost/preprocessor/seq/push_front.hpp>
-#include <boost/preprocessor/seq/seq.hpp>
-
-#define SEQ_L BOOST_PP_SEQ_NIL
+			<pre>#include <boost/preprocessor/facilities/empty.hpp><br>#include <boost/preprocessor/seq/push_back.hpp><br>#include <boost/preprocessor/seq/push_front.hpp><br>#include <boost/preprocessor/seq/seq.hpp><br><br>#define SEQ_L BOOST_PP_SEQ_NIL
 #define SEQ_R BOOST_PP_EMPTY
-
-BOOST_PP_SEQ_PUSH_BACK(
-   BOOST_PP_SEQ_PUSH_BACK(SEQ_L, a), b
-)
-
-// expands to (a)(b)
-
-BOOST_PP_SEQ_PUSH_FRONT(
-   BOOST_PP_SEQ_PUSH_FRONT(SEQ_R, a), b
-)()
-
-// expands to (b)(a)
-</pre>
+BOOST_PP_SEQ_PUSH_BACK(<br>   BOOST_PP_SEQ_PUSH_BACK(SEQ_L, a), b<br>)<br><br>// expands to (a)(b)<br><br>BOOST_PP_SEQ_PUSH_FRONT(<br>   BOOST_PP_SEQ_PUSH_FRONT(SEQ_R, a), b<br>)()<br><br>// expands to (b)(a)<br></pre>
                 </div>
         <hr size="1">
         <div style="margin-left: 0px;">
                 <i>© Copyright Housemarque Oy 2002</i>
-		</br><i>© Copyright Paul Mensonides 2002</i>
+		<br><i>© Copyright Paul Mensonides 2002</i>
         </div>
         <div style="margin-left: 0px;">
                 <p><small>Distributed under the Boost Software License, Version 1.0. (See
                 accompanying file LICENSE_1_0.txt or
-		copy at <a href=
-		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
+		copy at www.boost.org/LICENSE_1_0.txt)</small></p>
         </div>
-	</body>
+</body>
 </html>
Modified: branches/pplib/variadics/libs/preprocessor/doc/ref/seq_rest_n.html
==============================================================================
--- branches/pplib/variadics/libs/preprocessor/doc/ref/seq_rest_n.html	(original)
+++ branches/pplib/variadics/libs/preprocessor/doc/ref/seq_rest_n.html	2011-04-14 14:33:27 EDT (Thu, 14 Apr 2011)
@@ -1,10 +1,11 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
-	<head>
-		<title>BOOST_PP_SEQ_REST_N</title>
+<head>
+        <title>BOOST_PP_SEQ_REST_N</title>
                 <link rel="stylesheet" type="text/css" href="../styles.css">
-	</head>
-	<body>
-		<div style="margin-left:  0px;">
+</head>
+<body>
+		<div style="margin-left: 0px;">
                         The <b>BOOST_PP_SEQ_REST_N</b> macro expands to a <i>seq</i> of all but the 
                         first <i>n</i> elements of a <i>seq</i>.
                 </div>
@@ -12,7 +13,7 @@
                         Usage
                 </h4>
                 <div class="code">
-			<b>BOOST_PP_SEQ_REST_N</b>(<i>n</i>, <i>list</i>)
+			<b>BOOST_PP_SEQ_REST_N</b>(<i>n</i>, <i>seq</i>)
                 </div>
                 <h4>
                         Arguments
@@ -22,7 +23,7 @@
                         <dd>
                                 The number of elements to remove.
                         </dd>
-			<dt>list</dt>
+			<dt>seq</dt>
                         <dd>
                                 The <i>seq</i> from which the elements are to be removed.
                         </dd>
@@ -51,70 +52,17 @@
                         Sample Code
                 </h4>
                 <div>
-			<pre>
-#include <boost/preprocessor/arithmetic/inc.hpp>
-#include <boost/preprocessor/seq/elem.hpp>
-#include <boost/preprocessor/seq/first_n.hpp>
-#include <boost/preprocessor/seq/rest_n.hpp>
-#include <boost/preprocessor/seq/size.hpp>
-
-#define NUMBERS \
-   (0)(1)(2)(3)(4)(5)(6)(7)(8)(9) \
-   (10)(11)(12)(13)(14)(15)(16)(17)(18)(19) \
-   (20)(21)(22)(23)(24)(25)(26)(27)(28)(29) \
-   (30)(31)(32)(33)(34)(35)(36)(37)(38)(39) \
-   (40)(41)(42)(43)(44)(45)(46)(47)(48)(49) \
-   (50)(51)(52)(53)(54)(55)(56)(57)(58)(59) \
-   (60)(61)(62)(63)(64)(65)(66)(67)(68)(69) \
-   (70)(71)(72)(73)(74)(75)(76)(77)(78)(79) \
-   (80)(81)(82)(83)(84)(85)(86)(87)(88)(89) \
-   (90)(91)(92)(93)(94)(95)(96)(97)(98)(99) \
-   (100)(101)(102)(103)(104)(105)(106)(107)(108)(109) \
-   (110)(111)(112)(113)(114)(115)(116)(117)(118)(119) \
-   (120)(121)(122)(123)(124)(125)(126)(127)(128)(129) \
-   (130)(131)(132)(133)(134)(135)(136)(137)(138)(139) \
-   (140)(141)(142)(143)(144)(145)(146)(147)(148)(149) \
-   (150)(151)(152)(153)(154)(155)(156)(157)(158)(159) \
-   (160)(161)(162)(163)(164)(165)(166)(167)(168)(169) \
-   (170)(171)(172)(173)(174)(175)(176)(177)(178)(179) \
-   (180)(181)(182)(183)(184)(185)(186)(187)(188)(189) \
-   (190)(191)(192)(193)(194)(195)(196)(197)(198)(199) \
-   (200)(201)(202)(203)(204)(205)(206)(207)(208)(209) \
-   (210)(211)(212)(213)(214)(215)(216)(217)(218)(219) \
-   (220)(221)(222)(223)(224)(225)(226)(227)(228)(229) \
-   (230)(231)(232)(233)(234)(235)(236)(237)(238)(239) \
-   (240)(241)(242)(243)(244)(245)(246)(247)(248)(249) \
-   (250)(251)(252)(253)(254)(255)(256) \
-   /**/
-
-#define SUPER_ADD(x, y) BOOST_PP_SEQ_ELEM(y, BOOST_PP_SEQ_REST_N(x, NUMBERS))
-
-SUPER_ADD(100, 100) // expands to 200
-
-#define SUPER_SUB(x, y) \
-   BOOST_PP_SEQ_SIZE( \
-      BOOST_PP_SEQ_REST_N( \
-         BOOST_PP_INC(y), \
-         BOOST_PP_SEQ_FIRST_N( \
-            BOOST_PP_INC(x), NUMBERS \
-         ) \
-      ) \
-   ) \
-   /**/
-
-SUPER_SUB(67, 25) // expands to 42
-</pre>
+			<pre>#include <boost/preprocessor/arithmetic/inc.hpp><br>#include <boost/preprocessor/seq/elem.hpp><br>#include <boost/preprocessor/seq/first_n.hpp><br>#include <boost/preprocessor/seq/rest_n.hpp><br>#include <boost/preprocessor/seq/size.hpp><br><br>#define NUMBERS \<br>   (0)(1)(2)(3)(4)(5)(6)(7)(8)(9) \<br>   (10)(11)(12)(13)(14)(15)(16)(17)(18)(19) \<br>   (20)(21)(22)(23)(24)(25)(26)(27)(28)(29) \<br>   (30)(31)(32)(33)(34)(35)(36)(37)(38)(39) \<br>   (40)(41)(42)(43)(44)(45)(46)(47)(48)(49) \<br>   (50)(51)(52)(53)(54)(55)(56)(57)(58)(59) \<br>   (60)(61)(62)(63)(64)(65)(66)(67)(68)(69) \<br>   (70)(71)(72)(73)(74)(75)(76)(77)(78)(79) \<br>   (80)(81)(82)(83)(84)(85)(86)(87)(88)(89) \<br>   (90)(91)(92)(93)(94)(95)(96)(97)(98)(99) \<br>   (100)(101)(102)(103)(104)(105
)(106)(107)(108)(109) \<br>   (110)(111)(112)(113)(114)(115)(116)(117)(118)(119) \<br>   (120)(121)(122)(123)(124)(125)(126)(127)(128)(129) \<br>   (130)(131)(132)(133)(134)(135)(136)(137)(138)(139) \<br>   (140)(141)(142)(143)(144)(145)(146)(147)(148)(149) \<br>   (150)(151)(152)(153)(154)(155)(156)(157)(158)(159) \<br>   (160)(161)(162)(163)(164)(165)(166)(167)(168)(169) \<br>   (170)(171)(172)(173)(174)(175)(176)(177)(178)(179) \<br>   (180)(181)(182)(183)(184)(185)(186)(187)(188)(189) \<br>   (190)(191)(192)(193)(194)(195)(196)(197)(198)(199) \<br>   (200)(201)(202)(203)(204)(205)(206)(207)(208)(209) \<br>   (210)(211)(212)(213)(214)(215)(216)(217)(218)(219) \<br>   (220)(221)(222)(223)(224)(225)(226)(227)(228)(229) \<br>   (230)(231)(232)(233)(234)(235)(236)(237)(238)(239) \<br>   (240)(241)(242)(243)(244)(245)(246)(247)(248)(249) \<br>   (250)(251)(252)(253)(254)(255)(256) \<br>   /**/<br><br>#define SUPER_ADD(x, y) BOOST_PP_SEQ_ELEM(y, <a href="seq_rest_n.html">BOOST_PP_SEQ
_REST_N</a>(x, NUMBERS))<br><br>SUPER_ADD(100, 100) // expands to 200<br><br>#define SUPER_SUB(x, y) \<br>   BOOST_PP_SEQ_SIZE( \<br>      BOOST_PP_SEQ_REST_N( \<br>         BOOST_PP_INC(y), \<br>         BOOST_PP_SEQ_FIRST_N( \<br>            BOOST_PP_INC(x), NUMBERS \<br>         ) \<br>      ) \<br>   ) \<br>   /**/<br><br>SUPER_SUB(67, 25) // expands to 42<br></pre>
                 </div>
         <hr size="1">
         <div style="margin-left: 0px;">
                 <i>© Copyright Housemarque Oy 2002</i>
-		</br><i>© Copyright Paul Mensonides 2002</i>
+		<br><i>© Copyright Paul Mensonides 2002</i>
         </div>
         <div style="margin-left: 0px;">
                 <p><small>Distributed under the Boost Software License, Version 1.0. (See
                 accompanying file LICENSE_1_0.txt or
-		copy at <a href=
-		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
+		copy at www.boost.org/LICENSE_1_0.txt)</small></p>
         </div>
-	</body>
+</body>
 </html>