Fix & regenerate sum_avg_portable.cpp

[SVN r20402]
This commit is contained in:
Douglas Gregor
2003-10-17 16:25:51 +00:00
parent 2c708069e8
commit b09e7f3d3d
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ void do_sum_avg(int values[], int n, int& sum, float& avg)
}
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;
return 0;