1
0
forked from boostorg/bind

Fix some HTML errors.

[SVN r12649]
This commit is contained in:
Darin Adler
2002-02-02 19:02:53 +00:00
parent 8ec63f5ca5
commit 9ca2e6f064
3 changed files with 5 additions and 4 deletions

View File

@@ -268,7 +268,7 @@ int i = 5;
bind(&X::f, ref(x), _1)(i); // x.f(i)
bind(&X::f, &x, _1)(i); // (&x)->f(i)
bind(&X::f, &x, _1)(i); // (&x)->f(i)
bind(&amp;X::f, x, _1)(i); // (<i>internal copy of x</i>).f(i)
@@ -653,6 +653,7 @@ syntax for functions and member function pointers.
<h3><a name="err_msvc_using">MSVC specific: using boost::bind;</a></h3>
<p>
On MSVC (up to version 7.0), when <b>boost::bind</b> is brought into scope
with an using declaration:
</p>

View File

@@ -96,7 +96,7 @@ When documenting the feature, the library author will simply state:
<h4 style="margin-left: 20pt;">template&lt;class It, class R, class T&gt; void for_each(It first, It last, R (T::*pmf) ());</h4>
<p style="margin-left: 20pt;">
<b>Effects:</b> equivalent to std::for_each(first, last, boost::mem_fn(pmf));</tt>
<b>Effects:</b> equivalent to std::for_each(first, last, boost::mem_fn(pmf));
</p>
<p>
@@ -271,7 +271,7 @@ the return type of the member function pointer passed as an argument to <b>mem_f
<b>Throws:</b> Nothing.
</p>
<a name="mem_fn"><h3>mem_fn</h3></a>
<h3><a name="mem_fn">mem_fn</a></h3>
<h4><a name="mem_fn_1">template&lt;class R, class T&gt; <i>implementation-defined-1</i> mem_fn(R (T::*pmf) ())</a></h4>

View File

@@ -63,7 +63,7 @@ where <b>X</b> is the type of <b>x</b>. Similarly, <b>boost::cref(x)</b>
returns a <b>boost::reference_wrapper&lt;X const&gt;(x)</b>.
</p>
<p>The expression <b>boost::is_reference_wrapper&ltT&gt;::value</b> is
<p>The expression <b>boost::is_reference_wrapper&lt;T&gt;::value</b> is
<b>true</b> if <b>T</b> is a
<b>reference_wrapper</b>, and <b>false</b> otherwise.