Subject: [Boost-docs] Mistake in HTML-gen of small_vector_base
From: Soul Studios (matt_at_[hidden])
Date: 2016-01-10 02:59:51
"This class consists of common code from all small_vector<T, N> types
that don't depend on the "N" template parameter. This class is
non-copyable and non-destructible, so this class tipically used as
reference argument to functions that read or write small vectors. Since
small_vector<T, N> derives from small_vector_base<T>, the conversion to
small_vector_base is implicit <preformatted></preformatted>
<preformatted>//Clients can pass any small_vector<Foo, N>. void
read_any_small_vector_of_foo(const small_vector_base<Foo>
&in_parameter);</preformatted>
<preformatted>void modify_any_small_vector_of_foo(small_vector_base<Foo>
&out_parameter);</preformatted>
<preformatted>void some_function() {</preformatted>
<preformatted> small_vector<Foo, 8> myvector;</preformatted>
<preformatted> read_any_small_vector_of_foo(myvector); // Reads
myvector</preformatted>
<preformatted> modify_any_small_vector_of_foo(myvector); // Modifies
myvector</preformatted>
<preformatted>} </preformatted>"
Looks like the generated 'preformatted' tag and associated code
(<p><span style="color: red"><preformatted>) is meant to be a
series of <code> enclosures.
Also, typically is spelt, with a 'y'...
M
This archive was generated by hypermail 2.1.7 : 2017-11-11 08:50:41 UTC