
11 Jan
2010
11 Jan
'10
12:06 p.m.
On 1/11/2010 10:45 PM, Marco Guazzone wrote:
Just for info, in my case, to fix the problem, I had to use fully qualification:
boost::accumulators::moment<2>(acc)
instead of
accumulators::moment<2>(acc)
Correct. You can make this easier with a namespace alias: namespace ba = boost::accumulators; ... ba::moment<2>(acc); HTH, -- Eric Niebler BoostPro Computing http://www.boostpro.com