Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r57929 - trunk/boost/spirit/home/support
From: hartmut.kaiser_at_[hidden]
Date: 2009-11-25 18:16:23


Author: hkaiser
Date: 2009-11-25 18:16:23 EST (Wed, 25 Nov 2009)
New Revision: 57929
URL: http://svn.boost.org/trac/boost/changeset/57929

Log:
Spirit: reverted latest change
Text files modified:
   trunk/boost/spirit/home/support/container.hpp | 24 ------------------------
   1 files changed, 0 insertions(+), 24 deletions(-)

Modified: trunk/boost/spirit/home/support/container.hpp
==============================================================================
--- trunk/boost/spirit/home/support/container.hpp (original)
+++ trunk/boost/spirit/home/support/container.hpp 2009-11-25 18:16:23 EST (Wed, 25 Nov 2009)
@@ -273,30 +273,6 @@
         }
     };
 
- template <typename Container, typename T>
- struct push_back_container<Container, optional<T> >
- {
- static void call(Container& c, optional<T> const& val)
- {
- if (val)
- push_back(c, boost::get<T>(val));
- }
- };
-
- template <typename Container, typename T>
- struct push_back_container<optional<Container>, optional<T> >
- {
- static void call(optional<Container>& c, optional<T> const& val)
- {
- if (val)
- {
- if (!c)
- c = Container();
- push_back(boost::get<Container>(c), boost::get<T>(val));
- }
- }
- };
-
     namespace detail
     {
         template <typename T>


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