Ticket #2823: boost-fusion-issue2823-2.diff

File boost-fusion-issue2823-2.diff, 535 bytes (added by Dean Michael Berris, 12 years ago)

Updated patch to take Steven's suggestion.

  • container/list/detail/build_cons.hpp

     
    4848        static type
    4949        call(First const& f, Last const& l)
    5050        {
    51             typename result_of::value_of<First>::type v = *f;
     51            typename result_of::deref<First>::type v = *f;
    5252            return type(v, next_build_cons::call(fusion::next(f), l));
    5353        }
    5454    };