$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r51392 - trunk/boost/functional
From: tschwinger_at_[hidden]
Date: 2009-02-22 11:27:23
Author: t_schwinger
Date: 2009-02-22 11:27:22 EST (Sun, 22 Feb 2009)
New Revision: 51392
URL: http://svn.boost.org/trac/boost/changeset/51392
Log:
adds missing template parameters for partial specialisations
Text files modified: 
   trunk/boost/functional/factory.hpp |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/boost/functional/factory.hpp
==============================================================================
--- trunk/boost/functional/factory.hpp	(original)
+++ trunk/boost/functional/factory.hpp	2009-02-22 11:27:22 EST (Sun, 22 Feb 2009)
@@ -41,8 +41,8 @@
 
     //----- ---- --- -- - -  -   -
 
-    template< typename Pointer >
-    class factory<Pointer, boost::none_t> 
+    template< typename Pointer, factory_alloc_propagation AP >
+    class factory<Pointer, boost::none_t, AP> 
     {
       public:
         typedef typename boost::remove_cv<Pointer>::type result_type;
@@ -124,8 +124,8 @@
 #     undef BOOST_TMP_MACRO
     };
 
-    template< typename Pointer, class Allocator > 
-    class factory<Pointer&, Allocator>;
+    template< typename Pointer, class Allocator, factory_alloc_propagation AP > 
+    class factory<Pointer&, Allocator, AP>;
     // forbidden, would create a dangling reference
 }