$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58602 - trunk/boost/spirit/home/karma/directive
From: hartmut.kaiser_at_[hidden]
Date: 2009-12-30 15:24:21
Author: hkaiser
Date: 2009-12-30 15:24:21 EST (Wed, 30 Dec 2009)
New Revision: 58602
URL: http://svn.boost.org/trac/boost/changeset/58602
Log:
Spirit: fixed SA detection for karma::maxwidth
Text files modified: 
   trunk/boost/spirit/home/karma/directive/maxwidth.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/karma/directive/maxwidth.hpp
==============================================================================
--- trunk/boost/spirit/home/karma/directive/maxwidth.hpp	(original)
+++ trunk/boost/spirit/home/karma/directive/maxwidth.hpp	2009-12-30 15:24:21 EST (Wed, 30 Dec 2009)
@@ -224,8 +224,8 @@
 
 namespace boost { namespace spirit { namespace traits
 {
-    template <typename Subject>
-    struct has_semantic_action<karma::maxwidth_width<Subject> >
+    template <typename Subject, typename Width, typename Rest>
+    struct has_semantic_action<karma::maxwidth_width<Subject, Width, Rest> >
       : unary_has_semantic_action<Subject> {};
 
 }}}