diff options
Diffstat (limited to 'boost/accumulators/statistics/tail_variate_means.hpp')
-rw-r--r-- | boost/accumulators/statistics/tail_variate_means.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/boost/accumulators/statistics/tail_variate_means.hpp b/boost/accumulators/statistics/tail_variate_means.hpp index d34d4abcd5..a97eab5648 100644 --- a/boost/accumulators/statistics/tail_variate_means.hpp +++ b/boost/accumulators/statistics/tail_variate_means.hpp @@ -118,7 +118,11 @@ namespace impl this->tail_means_.begin() , this->tail_means_.end() , this->tail_means_.begin() +#ifdef BOOST_NO_CXX98_BINDERS + , std::bind(std::divides<float_type>(), std::placeholders::_1, factor) +#else , std::bind2nd(std::divides<float_type>(), factor) +#endif ); } else |