[accumulators] Patch to fix the remaining Tru64/CXX failures.

Hello, I would like to commit the attached patch on the trunk in order to fix the remaining Tru64/CXX failures for the accumulators lib. OK? Regards, Markus Index: pot_tail_mean.hpp =================================================================== --- pot_tail_mean.hpp (revision 43370) +++ pot_tail_mean.hpp (working copy) @@ -83,8 +83,8 @@ extractor<peaks_over_threshold_tag> const some_peaks_over_threshold = {}; extractor<pot_quantile_tag> const some_pot_quantile = {}; - float_type beta_bar = some_peaks_over_threshold(args).get<1>(); - float_type xi_hat = some_peaks_over_threshold(args).get<2>(); + float_type beta_bar = some_peaks_over_threshold(args).template get<1>(); + float_type xi_hat = some_peaks_over_threshold(args).template get<2>(); return some_pot_quantile(args) - this->sign_ * beta_bar/( xi_hat - 1. ) * std::pow( is_same<LeftRight, left>::value ? args[quantile_probability] : 1. - args[quantile_probability]

Markus Schöpflin wrote:
I would like to commit the attached patch on the trunk in order to fix the remaining Tru64/CXX failures for the accumulators lib. OK?
I've tested your fix with gcc and msvc. Looks good, please go ahead. -- Eric Niebler Boost Consulting www.boost-consulting.com
participants (2)
-
Eric Niebler
-
Markus Schöpflin