Ticket #7555: fix_comment_typo.patch

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

Patch for boost/proto/transform/fold_tree.hpp

  • boost/proto/transform/fold_tree.hpp

     
    6969    /// template<typename Tag, typename Fun>
    7070    /// struct recurse_if_
    7171    ///   : if_<
    72     ///         // If the current node has type type "Tag" ...
     72    ///         // If the current node has type "Tag" ...
    7373    ///         is_same<tag_of<_>, Tag>()
    7474    ///         // ... recurse, otherwise ...
    7575    ///       , fold<_, _state, recurse_if_<Tag, Fun> >
     
    124124    /// template<typename Tag, typename Fun>
    125125    /// struct recurse_if_
    126126    ///   : if_<
    127     ///         // If the current node has type type "Tag" ...
     127    ///         // If the current node has type "Tag" ...
    128128    ///         is_same<tag_of<_>, Tag>()
    129129    ///         // ... recurse, otherwise ...
    130130    ///       , reverse_fold<_, _state, recurse_if_<Tag, Fun> >