summaryrefslogtreecommitdiff
path: root/doc/html/intrusive/auto_unlink_hooks.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/intrusive/auto_unlink_hooks.html')
-rw-r--r--doc/html/intrusive/auto_unlink_hooks.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/intrusive/auto_unlink_hooks.html b/doc/html/intrusive/auto_unlink_hooks.html
index ae22788ae7..b730b2ff81 100644
--- a/doc/html/intrusive/auto_unlink_hooks.html
+++ b/doc/html/intrusive/auto_unlink_hooks.html
@@ -4,9 +4,9 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Auto-unlink hooks</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="../intrusive.html" title="Chapter&#160;16.&#160;Boost.Intrusive">
+<link rel="up" href="../intrusive.html" title="Chapter&#160;17.&#160;Boost.Intrusive">
<link rel="prev" href="safe_hook.html" title="Safe hooks">
<link rel="next" href="slist.html" title="Intrusive singly linked list: slist">
</head>
@@ -27,7 +27,7 @@
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="intrusive.auto_unlink_hooks"></a><a class="link" href="auto_unlink_hooks.html" title="Auto-unlink hooks">Auto-unlink hooks</a>
</h2></div></div></div>
-<div class="toc"><dl>
+<div class="toc"><dl class="toc">
<dt><span class="section"><a href="auto_unlink_hooks.html#intrusive.auto_unlink_hooks.auto_unlink_hooks_what">What's
an auto-unlink hook?</a></span></dt>
<dt><span class="section"><a href="auto_unlink_hooks.html#intrusive.auto_unlink_hooks.auto_unlink_hooks_example">Auto-unlink
@@ -44,7 +44,7 @@
<span class="bold"><strong>Boost.Intrusive</strong></span> offers additional hooks
with unique features:
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
When the destructor of the hook is called, the hook checks if the node
is inserted in a container. If so, the hook removes the node from the
@@ -61,7 +61,7 @@
hooks, but they have a restriction: they can only be used with <a class="link" href="presenting_containers.html" title="Presenting Boost.Intrusive containers">non-constant
time containers</a>. There is a reason for this:
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Auto-unlink hooks don't store any reference to the container where they
are inserted.
@@ -75,7 +75,7 @@
This auto-unlink feature is useful in certain applications but it must be
used <span class="bold"><strong>very carefully</strong></span>:
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
If several threads are using the same container the destructor of the
auto-unlink hook will be called without any thread synchronization so
@@ -89,7 +89,7 @@
<p>
These auto-unlink hooks have also safe-mode properties:
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Hooks' constructors put the hook in a well-known default state.
</li>