diff options
author | Chanho Park <chanho61.park@samsung.com> | 2014-12-11 18:55:56 +0900 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-12-11 18:55:56 +0900 |
commit | 08c1e93fa36a49f49325a07fe91ff92c964c2b6c (patch) | |
tree | 7a7053ceb8874b28ec4b868d4c49b500008a102e /doc/html/variant/misc.html | |
parent | bb4dd8289b351fae6b55e303f189127a394a1edd (diff) | |
download | boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.tar.gz boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.tar.bz2 boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.zip |
Imported Upstream version 1.57.0upstream/1.57.0
Diffstat (limited to 'doc/html/variant/misc.html')
-rw-r--r-- | doc/html/variant/misc.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/variant/misc.html b/doc/html/variant/misc.html index 4c382121c6..9c1d0460bd 100644 --- a/doc/html/variant/misc.html +++ b/doc/html/variant/misc.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Miscellaneous Notes</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.78.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> -<link rel="up" href="../variant.html" title="Chapter 34. Boost.Variant"> +<link rel="up" href="../variant.html" title="Chapter 38. Boost.Variant"> <link rel="prev" href="design.html" title="Design Overview"> <link rel="next" href="refs.html" title="References"> </head> @@ -25,9 +25,9 @@ <div class="section"> <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="variant.misc"></a>Miscellaneous Notes</h2></div></div></div> -<div class="toc"><dl> +<div class="toc"><dl class="toc"> <dt><span class="section"><a href="misc.html#variant.versus-any">Boost.Variant vs. Boost.Any</a></span></dt> -<dt><span class="section"><a href="misc.html#id3812199">Portability</a></span></dt> +<dt><span class="section"><a href="misc.html#idp525417744">Portability</a></span></dt> <dt><span class="section"><a href="misc.html#variant.troubleshooting">Troubleshooting</a></span></dt> <dt><span class="section"><a href="misc.html#variant.ack">Acknowledgments</a></span></dt> </dl></div> @@ -35,7 +35,7 @@ <div class="titlepage"><div><div><h3 class="title"> <a name="variant.versus-any"></a>Boost.Variant vs. Boost.Any</h3></div></div></div> <p>As a discriminated union container, the Variant library shares many - of the same features of the <a class="link" href="../any.html" title="Chapter 2. Boost.Any">Any</a> library. + of the same features of the <a class="link" href="../any.html" title="Chapter 3. Boost.Any">Any</a> library. However, since neither library wholly encapsulates the features of the other, one library cannot be generally recommended for use over the other.</p> @@ -43,7 +43,7 @@ such as: </p> -<div class="itemizedlist"><ul class="itemizedlist" type="disc"> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem">Boost.Variant guarantees the type of its content is one of a finite, user-specified set of types.</li> <li class="listitem">Boost.Variant provides <span class="emphasis"><em>compile-time</em></span> @@ -63,7 +63,7 @@ such as: </p> -<div class="itemizedlist"><ul class="itemizedlist" type="disc"> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem">Boost.Any, as its name implies, allows virtually any type for its content, providing great flexibility.</li> <li class="listitem">Boost.Any provides the no-throw guarantee of exception safety @@ -78,10 +78,10 @@ </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> -<a name="id3812199"></a>Portability</h3></div></div></div> +<a name="idp525417744"></a>Portability</h3></div></div></div> <p>The library aims for 100% ANSI/ISO C++ conformance. However, this is strictly impossible due to the inherently non-portable nature of the - <a href="../../../libs/type_traits/index.html" target="_top">Type Traits</a> library's + Type Traits library's <code class="computeroutput">type_with_alignment</code> facility. In practice though, no compilers or platforms have been discovered where this reliance on undefined behavior has been an issue.</p> @@ -188,7 +188,7 @@ <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="variant.troubleshooting"></a>Troubleshooting</h3></div></div></div> -<div class="toc"><dl> +<div class="toc"><dl class="toc"> <dt><span class="section"><a href="misc.html#variant.troubleshooting.template-depth">"Template instantiation depth exceeds maximum"</a></span></dt> <dt><span class="section"><a href="misc.html#variant.troubleshooting.compiler-memory">"Internal heap limit reached"</a></span></dt> </dl></div> @@ -203,7 +203,7 @@ <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="variant.troubleshooting.template-depth"></a>"Template instantiation depth exceeds maximum"</h4></div></div></div> -<div class="toc"><dl><dt><span class="section"><a href="misc.html#variant.troubleshooting.template-depth.gcc">GNU GCC</a></span></dt></dl></div> +<div class="toc"><dl class="toc"><dt><span class="section"><a href="misc.html#variant.troubleshooting.template-depth.gcc">GNU GCC</a></span></dt></dl></div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="variant.troubleshooting.template-depth.gcc"></a>GNU GCC</h5></div></div></div> @@ -216,7 +216,7 @@ <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="variant.troubleshooting.compiler-memory"></a>"Internal heap limit reached"</h4></div></div></div> -<div class="toc"><dl><dt><span class="section"><a href="misc.html#variant.troubleshooting.compiler-memory.msvc">Microsoft Visual C++</a></span></dt></dl></div> +<div class="toc"><dl class="toc"><dt><span class="section"><a href="misc.html#variant.troubleshooting.compiler-memory.msvc">Microsoft Visual C++</a></span></dt></dl></div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="variant.troubleshooting.compiler-memory.msvc"></a>Microsoft Visual C++</h5></div></div></div> |