|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r50435 - trunk/boost/spirit/home/karma/detail
From: hartmut.kaiser_at_[hidden]
Date: 2009-01-02 05:47:50
Author: hkaiser
Date: 2009-01-02 05:47:49 EST (Fri, 02 Jan 2009)
New Revision: 50435
URL: http://svn.boost.org/trac/boost/changeset/50435
Log:
Spirit.Karma: Fixed Karma output_iterator for very strict compilers
Text files modified:
trunk/boost/spirit/home/karma/detail/output_iterator.hpp | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/karma/detail/output_iterator.hpp
==============================================================================
--- trunk/boost/spirit/home/karma/detail/output_iterator.hpp (original)
+++ trunk/boost/spirit/home/karma/detail/output_iterator.hpp 2009-01-02 05:47:49 EST (Fri, 02 Jan 2009)
@@ -208,8 +208,10 @@
#if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
private:
- friend struct enable_counting<output_iterator>;
- friend struct enable_buffering<output_iterator>;
+ friend struct enable_counting<output_iterator<OutputIterator> >;
+ friend struct enable_buffering<output_iterator<OutputIterator> >;
+ friend struct enable_counting<output_iterator<OutputIterator, int> >;
+ friend struct enable_buffering<output_iterator<OutputIterator, int> >;
#else
public:
#endif
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