summaryrefslogtreecommitdiff
path: root/doc/html/any.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/any.html')
-rw-r--r--doc/html/any.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/any.html b/doc/html/any.html
index 448ba11073..3ed77986d5 100644
--- a/doc/html/any.html
+++ b/doc/html/any.html
@@ -2,9 +2,9 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
-<title>Chapter&#160;3.&#160;Boost.Any</title>
+<title>Chapter&#160;4.&#160;Boost.Any</title>
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="libraries.html" title="Part&#160;I.&#160;The Boost C++ Libraries (BoostBook Subset)">
<link rel="prev" href="align/history.html" title="History">
@@ -26,13 +26,13 @@
<div class="chapter">
<div class="titlepage"><div>
<div><h2 class="title">
-<a name="any"></a>Chapter&#160;3.&#160;Boost.Any</h2></div>
+<a name="any"></a>Chapter&#160;4.&#160;Boost.Any</h2></div>
<div><div class="author"><h3 class="author">
<span class="firstname">Kevlin</span> <span class="surname">Henney</span>
</h3></div></div>
<div><p class="copyright">Copyright &#169; 2001 Kevlin Henney</p></div>
<div><div class="legalnotice">
-<a name="idp39024352"></a><p>Distributed under the Boost Software License, Version 1.0.
+<a name="idm45928153688384"></a><p>Distributed under the Boost Software License, Version 1.0.
(See accompanying file <code class="filename">LICENSE_1_0.txt</code> or copy at
<a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
@@ -40,8 +40,8 @@
</div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
-<dl>
-<dt><span class="section"><a href="any.html#idp39027120">Introduction</a></span></dt>
+<dl class="toc">
+<dt><span class="section"><a href="any.html#idm45928153685664">Introduction</a></span></dt>
<dt><span class="section"><a href="any/s02.html">Examples</a></span></dt>
<dt><span class="section"><a href="any/reference.html">Reference</a></span></dt>
<dd><dl>
@@ -53,7 +53,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="idp39027120"></a>Introduction</h2></div></div></div>
+<a name="idm45928153685664"></a>Introduction</h2></div></div></div>
<p>There are times when a generic (in the sense of
<span class="emphasis"><em>general</em></span> as opposed to
<span class="emphasis"><em>template-based programming</em></span>) type is needed:
@@ -61,7 +61,7 @@
other more specific types rather than C++'s normal strict and
static types. We can distinguish three basic kinds of generic
type:</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p>Converting types that can hold one of a number of
possible value types, e.g. <code class="computeroutput">int</code> and
<code class="computeroutput">string</code>, and freely convert between them, for