Compare commits

..

1 Commits

Author SHA1 Message Date
f3756f59fb This commit was manufactured by cvs2svn to create tag 'RC_1_30_2'.
[SVN r19443]
2003-08-04 17:55:28 +00:00

View File

@ -25,7 +25,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;