Ticket #3276: boost-04.patch

File boost-04.patch, 561 bytes (added by gerickson@…, 13 years ago)
  • boost/accumulators/statistics/rolling_sum.hpp

    a b  
    4949        template<typename Args>
    5050        result_type result(Args const &args) const
    5151        {
     52            (void)args;
     53
    5254            return this->sum_;
    5355        }
    5456
     
    8183//
    8284namespace extract
    8385{
    84     extractor<tag::rolling_sum> const rolling_sum = {};
     86    extern extractor<tag::rolling_sum> const rolling_sum = {};
    8587}
    8688
    8789using extract::rolling_sum;