mirror of
https://github.com/boostorg/function.git
synced 2025-07-17 14:42:10 +02:00
Fix & regenerate sum_avg_portable.cpp
[SVN r20402]
This commit is contained in:
@ -130,7 +130,7 @@ CopyConstructible, so we can even use references and arrays:
|
|||||||
<tbody>
|
<tbody>
|
||||||
<row>
|
<row>
|
||||||
<entry>
|
<entry>
|
||||||
<programlisting name="function.tutorial.sum_avg_decl.portable"><classname alt="functionN">boost::function4</classname><void, int[], int, int&, float&> sum_avg;</programlisting>
|
<programlisting name="function.tutorial.sum_avg_decl.portable"><classname alt="functionN">boost::function4</classname><void, int*, int, int&, float&> sum_avg;</programlisting>
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -21,7 +21,7 @@ void do_sum_avg(int values[], int n, int& sum, float& avg)
|
|||||||
}
|
}
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
boost::function4<void, int[], int, int&, float&> sum_avg;
|
boost::function4<void, int*, int, int&, float&> sum_avg;
|
||||||
sum_avg = &do_sum_avg;
|
sum_avg = &do_sum_avg;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user