From de18e59c8597ada8da9738030041e08afc65ca77 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Tue, 1 Oct 2013 23:41:38 +0000 Subject: [PATCH] Fixes Ticket #7513 [SVN r86128] --- include/boost/fusion/sequence/convert.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/fusion/sequence/convert.hpp b/include/boost/fusion/sequence/convert.hpp index 52648101..e7a2e38b 100644 --- a/include/boost/fusion/sequence/convert.hpp +++ b/include/boost/fusion/sequence/convert.hpp @@ -20,11 +20,11 @@ namespace boost { namespace fusion template struct convert { - typedef typename extension::convert_impl gen; - typedef typename - gen::template apply::type - type; + extension::convert_impl::template apply + gen; + + typedef typename gen::type type; }; }