Ticket #7486: fix_comment_typo.patch

File fix_comment_typo.patch, 849 bytes (added by oss.2012.team+A2@…, 10 years ago)

Patch for foreach.hpp

  • boost/foreach.hpp

     
    959959    (true ? boost::foreach_detail_::make_probe((COL), BOOST_FOREACH_ID(_foreach_is_rvalue)) : (COL))
    960960
    961961// The rvalue/lvalue-ness of the collection expression is determined dynamically, unless
    962 // type type is an array or is noncopyable or is non-const, in which case we know it's an lvalue.
     962// the type is an array or is noncopyable or is non-const, in which case we know it's an lvalue.
    963963// If the type happens to be a lightweight proxy, always make a copy.
    964964# define BOOST_FOREACH_SHOULD_COPY(COL)                                                         \
    965965    (boost::foreach_detail_::should_copy_impl(                                                  \