Compare commits

..

1 Commits

Author SHA1 Message Date
706b042886 This commit was manufactured by cvs2svn to create tag
'Version_1_30_1'.

[SVN r19444]
2003-08-04 17:55:29 +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;