From c1de64359f2a46c4dd0e66bbbfb74f615c8db04e Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Wed, 19 Aug 2009 22:52:27 +0000 Subject: [PATCH] Provide definitions for the dummy structs used by has_push_back_impl and has_push_front_impl so that they work with Fusion containers. Fixes #3337. [SVN r55672] --- include/boost/mpl/aux_/push_back_impl.hpp | 2 +- include/boost/mpl/aux_/push_front_impl.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/mpl/aux_/push_back_impl.hpp b/include/boost/mpl/aux_/push_back_impl.hpp index 3ece711..27e7a60 100644 --- a/include/boost/mpl/aux_/push_back_impl.hpp +++ b/include/boost/mpl/aux_/push_back_impl.hpp @@ -25,7 +25,7 @@ namespace boost { namespace mpl { -struct has_push_back_arg; +struct has_push_back_arg {}; // agurt 05/feb/04: no default implementation; the stub definition is needed // to enable the default 'has_push_back' implementation below diff --git a/include/boost/mpl/aux_/push_front_impl.hpp b/include/boost/mpl/aux_/push_front_impl.hpp index 4010532..5b83ee7 100644 --- a/include/boost/mpl/aux_/push_front_impl.hpp +++ b/include/boost/mpl/aux_/push_front_impl.hpp @@ -25,7 +25,7 @@ namespace boost { namespace mpl { -struct has_push_front_arg; +struct has_push_front_arg {}; // agurt 05/feb/04: no default implementation; the stub definition is needed // to enable the default 'has_push_front' implementation below