mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-29 20:17:32 +02:00
bug fix for end_impl.
[SVN r42164]
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
#define BOOST_FUSION_END_IMPL_24122005_1755
|
||||
|
||||
#include <boost/fusion/adapted/struct/struct_iterator.hpp>
|
||||
#include <boost/fusion/adapted/struct/detail/size_impl.hpp>
|
||||
|
||||
namespace boost { namespace fusion
|
||||
{
|
||||
@ -25,7 +26,12 @@ namespace boost { namespace fusion
|
||||
template <typename Sequence>
|
||||
struct apply
|
||||
{
|
||||
typedef struct_iterator<Sequence, 2> type;
|
||||
typedef
|
||||
struct_iterator<
|
||||
Sequence
|
||||
, size_impl<struct_tag>::template apply<Sequence>::value
|
||||
>
|
||||
type;
|
||||
|
||||
static type
|
||||
call(Sequence& v)
|
||||
|
Reference in New Issue
Block a user