summaryrefslogtreecommitdiff
path: root/doc/html/variant.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/variant.html')
-rw-r--r--doc/html/variant.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/variant.html b/doc/html/variant.html
index 0061386b13..0c0e9c67e4 100644
--- a/doc/html/variant.html
+++ b/doc/html/variant.html
@@ -34,7 +34,7 @@
</h3></div></div>
<div><p class="copyright">Copyright &#169; 2002, 2003 Eric Friedman, Itay Maman</p></div>
<div><div class="legalnotice">
-<a name="idp522563024"></a><p>Distributed under the Boost Software License, Version 1.0.
+<a name="idp517845328"></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>
@@ -74,7 +74,7 @@
<dt><span class="section"><a href="variant/misc.html">Miscellaneous Notes</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="variant/misc.html#variant.versus-any">Boost.Variant vs. Boost.Any</a></span></dt>
-<dt><span class="section"><a href="variant/misc.html#idp525417744">Portability</a></span></dt>
+<dt><span class="section"><a href="variant/misc.html#idp521687744">Portability</a></span></dt>
<dt><span class="section"><a href="variant/misc.html#variant.troubleshooting">Troubleshooting</a></span></dt>
<dt><span class="section"><a href="variant/misc.html#variant.ack">Acknowledgments</a></span></dt>
</dl></dd>
@@ -106,7 +106,7 @@ include:</p>
<li class="listitem">Compile-time type-safe value visitation via
<code class="computeroutput"><a class="link" href="boost/apply_visitor.html" title="Function apply_visitor">boost::apply_visitor</a></code>.</li>
<li class="listitem">Run-time checked explicit value retrieval via
- <code class="computeroutput"><a class="link" href="boost/get_idp94543392.html" title="Function get">boost::get</a></code>.</li>
+ <code class="computeroutput"><a class="link" href="boost/get_idp108797984.html" title="Function get">boost::get</a></code>.</li>
<li class="listitem">Support for recursive variant types via both
<code class="computeroutput"><a class="link" href="boost/make_recursive_variant.html" title="Class template make_recursive_variant">boost::make_recursive_variant</a></code> and
<code class="computeroutput"><a class="link" href="boost/recursive_wrapper.html" title="Class template recursive_wrapper">boost::recursive_wrapper</a></code>.</li>
@@ -149,7 +149,7 @@ manipulated through a common base type (often a virtual base class
or, more dangerously, a <code class="computeroutput">void*</code>). Objects of
concrete type may be then retrieved by way of a polymorphic downcast
construct (e.g., <code class="computeroutput">dynamic_cast</code>,
-<code class="computeroutput"><a class="link" href="boost/any_cast_idp41191712.html" title="Function any_cast">boost::any_cast</a></code>, etc.).</p>
+<code class="computeroutput"><a class="link" href="boost/any_cast_idp42424128.html" title="Function any_cast">boost::any_cast</a></code>, etc.).</p>
<p>However, solutions of this sort are highly error-prone, due
to the following:</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">