$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r52782 - sandbox/boost0x/boost/function
From: gordon_at_[hidden]
Date: 2009-05-05 19:11:14
Author: gordon.woodhull
Date: 2009-05-05 19:11:13 EDT (Tue, 05 May 2009)
New Revision: 52782
URL: http://svn.boost.org/trac/boost/changeset/52782
Log:
move allocator before variadic parameters
Text files modified: 
   sandbox/boost0x/boost/function/function_variadic_invoker.hpp |    12 ++++++------                            
   1 files changed, 6 insertions(+), 6 deletions(-)
Modified: sandbox/boost0x/boost/function/function_variadic_invoker.hpp
==============================================================================
--- sandbox/boost0x/boost/function/function_variadic_invoker.hpp	(original)
+++ sandbox/boost0x/boost/function/function_variadic_invoker.hpp	2009-05-05 19:11:13 EDT (Tue, 05 May 2009)
@@ -257,8 +257,8 @@
         };
 
         template<typename FunctionPtr,
-                 typename R, typename ... Args,
-                 typename Allocator>
+                 typename Allocator,
+                 typename R, typename ... Args>
         struct apply_a
         {
           typedef typename get_function_invoker<
@@ -292,8 +292,8 @@
         };
 
         template<typename MemberPtr,
-                 typename R, typename ... Args,
-                 typename Allocator>
+                 typename Allocator,
+                 typename R, typename ... Args>
         struct apply_a
         {
           typedef typename get_member_invoker<
@@ -327,8 +327,8 @@
         };
 
         template<typename FunctionObj,
-                 typename R, typename ... Args,
-                 typename Allocator>
+                 typename Allocator,
+                 typename R, typename ... Args>
         struct apply_a
         {
           typedef typename get_function_obj_invoker<