summaryrefslogtreecommitdiff
path: root/doc/html/signals2/faq.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/signals2/faq.html')
-rw-r--r--doc/html/signals2/faq.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/signals2/faq.html b/doc/html/signals2/faq.html
index 2c4f919b0c..7a6feaa771 100644
--- a/doc/html/signals2/faq.html
+++ b/doc/html/signals2/faq.html
@@ -26,11 +26,11 @@
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="signals2.faq"></a>Frequently Asked Questions</h2></div></div></div>
<div class="qandaset">
-<a name="idp430136608"></a><dl>
-<dt>1. <a href="faq.html#idp430136864">Don't noncopyable signal semantics mean that a class
+<a name="idp424068496"></a><dl>
+<dt>1. <a href="faq.html#idp424068752">Don't noncopyable signal semantics mean that a class
with a signal member will be noncopyable as well?</a>
</dt>
-<dt>2. <a href="faq.html#idp430139216">Is Boost.Signals2 thread-safe?</a>
+<dt>2. <a href="faq.html#idp424071104">Is Boost.Signals2 thread-safe?</a>
</dt>
</dl>
<table border="0" style="width: 100%;">
@@ -41,7 +41,7 @@
<tbody>
<tr class="question">
<td align="left" valign="top">
-<a name="idp430136864"></a><a name="idp430137120"></a><p><b>1.</b></p>
+<a name="idp424068752"></a><a name="idp424069008"></a><p><b>1.</b></p>
</td>
<td align="left" valign="top"><p>Don't noncopyable signal semantics mean that a class
with a signal member will be noncopyable as well?</p></td>
@@ -56,7 +56,7 @@
</tr>
<tr class="question">
<td align="left" valign="top">
-<a name="idp430139216"></a><a name="idp430139472"></a><p><b>2.</b></p>
+<a name="idp424071104"></a><a name="idp424071360"></a><p><b>2.</b></p>
</td>
<td align="left" valign="top"><p>Is Boost.Signals2 thread-safe?</p></td>
</tr>
@@ -70,7 +70,7 @@
with signal invocation, you will need to use automatic connection management.
That is, the objects will need to be owned by
<code class="computeroutput">shared_ptr</code> and passed to the slot's
- <code class="computeroutput"><a class="link" href="../boost/signals2/slot.html#idp209966256-bb">track</a></code>() method before the slot is connected.
+ <code class="computeroutput"><a class="link" href="../boost/signals2/slot.html#idp89491600-bb">track</a></code>() method before the slot is connected.
The <code class="computeroutput"><a class="link" href="../boost/signals2/trackable.html" title="Class trackable">signals2::trackable</a></code> scheme of automatic connection management
is NOT thread-safe, and is only provided to ease porting of single-threaded
code from Boost.Signals to Boost.Signals2.