
4 Oct
2011
4 Oct
'11
7:52 p.m.
Le 04/10/11 19:20, Eric Niebler a écrit :
On 10/2/2011 9:03 AM, Vicente J. Botet Escriba wrote:
No the program is just #include <boost/accumulators/framework/accumulator_set.hpp> #include <boost/accumulators/statistics/count.hpp> int main() { boost::accumulators::accumulator_set<int, boost::accumulators::features<boost::accumulators::tag::count> > acc; std::size_t c= boost::accumulators::count(acc); } You also need:
#include<boost/accumulators/framework/features.hpp>
Oh, I see. I missed this. Sorry for the noise and thanks a lot, Vicente