$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: joel_at_[hidden]
Date: 2008-04-18 16:05:59
Author: djowel
Date: 2008-04-18 16:05:59 EDT (Fri, 18 Apr 2008)
New Revision: 44553
URL: http://svn.boost.org/trac/boost/changeset/44553
Log:
removed unnecessary stuff
Text files modified: 
   trunk/boost/spirit/home/support/detail/action_dispatch.hpp |    28 ----------------------------            
   1 files changed, 0 insertions(+), 28 deletions(-)
Modified: trunk/boost/spirit/home/support/detail/action_dispatch.hpp
==============================================================================
--- trunk/boost/spirit/home/support/detail/action_dispatch.hpp	(original)
+++ trunk/boost/spirit/home/support/detail/action_dispatch.hpp	2008-04-18 16:05:59 EDT (Fri, 18 Apr 2008)
@@ -41,16 +41,6 @@
         return pass;
     }
 
-    template <typename RT, typename A0, typename A1, typename A2
-      , typename Attribute, typename Context>
-    bool action_dispatch(RT(&f)(A0, A1, A2)
-      , Attribute& attr, Context& context)
-    {
-        bool pass = true;
-        f(attr, context, pass);
-        return pass;
-    }
-
     template <typename RT, typename A0, typename A1
       , typename Attribute, typename Context>
     bool action_dispatch(RT(*f)(A0, A1)
@@ -60,15 +50,6 @@
         return true;
     }
 
-    template <typename RT, typename A0, typename A1
-      , typename Attribute, typename Context>
-    bool action_dispatch(RT(&f)(A0, A1)
-      , Attribute& attr, Context& context)
-    {
-        f(attr, context);
-        return true;
-    }
-
     template <typename RT, typename A0
       , typename Attribute, typename Context>
     bool action_dispatch(RT(*f)(A0)
@@ -78,15 +59,6 @@
         return true;
     }
 
-    template <typename RT, typename A0
-      , typename Attribute, typename Context>
-    bool action_dispatch(RT(&f)(A0)
-      , Attribute& attr, Context& context)
-    {
-        f(attr);
-        return true;
-    }
-
 }}}
 
 #endif