Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55679 - branches/release/boost/mpl/aux_
From: agurtovoy_at_[hidden]
Date: 2009-08-20 03:50:17


Author: agurtovoy
Date: 2009-08-20 03:50:16 EDT (Thu, 20 Aug 2009)
New Revision: 55679
URL: http://svn.boost.org/trac/boost/changeset/55679

Log:
MPL: merge fix for #3337 from the trunk (thanks Steven!)
Text files modified:
   branches/release/boost/mpl/aux_/push_back_impl.hpp | 2 +-
   branches/release/boost/mpl/aux_/push_front_impl.hpp | 2 +-
   2 files changed, 2 insertions(+), 2 deletions(-)

Modified: branches/release/boost/mpl/aux_/push_back_impl.hpp
==============================================================================
--- branches/release/boost/mpl/aux_/push_back_impl.hpp (original)
+++ branches/release/boost/mpl/aux_/push_back_impl.hpp 2009-08-20 03:50:16 EDT (Thu, 20 Aug 2009)
@@ -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

Modified: branches/release/boost/mpl/aux_/push_front_impl.hpp
==============================================================================
--- branches/release/boost/mpl/aux_/push_front_impl.hpp (original)
+++ branches/release/boost/mpl/aux_/push_front_impl.hpp 2009-08-20 03:50:16 EDT (Thu, 20 Aug 2009)
@@ -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


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk