Ticket #7526: bug7513.patch

File bug7513.patch, 993 bytes (added by Kohei Takahashi <flast@…>, 10 years ago)
  • boost/fusion/sequence/convert.hpp

    From 0112fd6b45842470d283d17343b99a1c2389b35f Mon Sep 17 00:00:00 2001
    From: Kohei Takahashi <flast@flast.jp>
    Date: Wed, 17 Oct 2012 14:08:56 +0900
    Subject: [PATCH] Fix wrong usage of fusion::detail:convert_impl
    
    ---
     boost/fusion/sequence/convert.hpp |    8 ++++----
     1 file changed, 4 insertions(+), 4 deletions(-)
    
    diff --git a/boost/fusion/sequence/convert.hpp b/boost/fusion/sequence/convert.hpp
    index 5264810..e7a2e38 100644
    a b namespace boost { namespace fusion  
    2020        template <typename Tag, typename Sequence>
    2121        struct convert
    2222        {
    23             typedef typename extension::convert_impl<Tag> gen;
    24 
    2523            typedef typename
    26                 gen::template apply<Sequence>::type
    27             type;
     24                extension::convert_impl<Tag>::template apply<Sequence>
     25            gen;
     26
     27            typedef typename gen::type type;
    2828        };
    2929    }
    3030