Changes between Initial Version and Version 1 of Ticket #8181
- Timestamp:
- Feb 26, 2013, 2:40:04 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8181 – Description
initial v1 3 3 Firstly, I instantiate an accumulator_set object using the correct tag, as following : 4 4 5 {{{ 5 6 #include <boost/accumulators/accumulators.hpp> 6 7 #include <boost/accumulators/statistics.hpp> 7 8 8 typedef boost::accumulators::accumulator_set<double, boost::accumulators::stats< boost::accumulators::tag::mean > > accumulator_type; 9 typedef boost::accumulators::accumulator_set<double, 10 boost::accumulators::stats< boost::accumulators::tag::mean > 11 > accumulator_type; 9 12 10 13 accumulator_type acc; 14 }}} 11 15 12 16 I try to compile this code with clang and with gcc(4.6), and both of them give the same kind of error :