Ticket #3031: boost-00.patch
File boost-00.patch, 2.5 KB (added by , 13 years ago) |
---|
-
boost/accumulators/framework/accumulator_set.hpp
a b 42 42 template<typename Args> 43 43 struct accumulator_visitor 44 44 { 45 explicit accumulator_visitor(Args const & args)46 : args( args)45 explicit accumulator_visitor(Args const &in_args) 46 : args(in_args) 47 47 { 48 48 } 49 49 -
boost/accumulators/framework/accumulators/droppable_accumulator.hpp
a b 218 218 private: 219 219 with_cached_result &operator =(with_cached_result const &); 220 220 221 void set(result_type const & result)221 void set(result_type const &in_result) 222 222 { 223 ::new(this->cache.address()) result_type( result);223 ::new(this->cache.address()) result_type(in_result); 224 224 } 225 225 226 226 result_type const &get() const -
boost/accumulators/statistics/rolling_mean.hpp
a b 69 69 // 70 70 namespace extract 71 71 { 72 ext ractor<tag::rolling_mean> const rolling_mean = {};72 extern extractor<tag::rolling_mean> const rolling_mean = {}; 73 73 } 74 74 75 75 using extract::rolling_mean; -
boost/accumulators/statistics/rolling_window.hpp
a b 153 153 // 154 154 namespace extract 155 155 { 156 ext ractor<tag::rolling_window_plus1> const rolling_window_plus1 = {};157 ext ractor<tag::rolling_window> const rolling_window = {};156 extern extractor<tag::rolling_window_plus1> const rolling_window_plus1 = {}; 157 extern extractor<tag::rolling_window> const rolling_window = {}; 158 158 } 159 159 160 160 using extract::rolling_window_plus1; -
boost/accumulators/statistics_fwd.hpp
a b 30 30 } 31 31 namespace extract 32 32 { 33 ext ractor<tag::quantile> const quantile = {};33 extern extractor<tag::quantile> const quantile = {}; 34 34 } 35 35 using extract::quantile; 36 36 … … 46 46 } 47 47 namespace extract 48 48 { 49 ext ractor<tag::tail_mean> const tail_mean = {};49 extern extractor<tag::tail_mean> const tail_mean = {}; 50 50 } 51 51 using extract::tail_mean; 52 52