Update of /cvsroot/boost/boost/boost/parameter
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv27545/boost/parameter

Modified Files:
      Tag: RC_1_34_0
        binding.hpp 
Log Message:
Merged HEAD to RC.


Index: binding.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/parameter/binding.hpp,v
retrieving revision 1.5.2.2
retrieving revision 1.5.2.3
diff -u -d -r1.5.2.2 -r1.5.2.3
--- binding.hpp 20 Sep 2006 15:05:45 -0000      1.5.2.2
+++ binding.hpp 23 Sep 2006 10:41:14 -0000      1.5.2.3
@@ -26,8 +26,8 @@
 template <class Parameters, class Keyword, class Default>
 struct binding0
 {
-    typedef typename mpl::apply_wrap2<
-        typename Parameters::binding,Keyword,Default
+    typedef typename mpl::apply_wrap3<
+        typename Parameters::binding,Keyword,Default,mpl::true_
     >::type type;
 
     BOOST_MPL_ASSERT_NOT((
@@ -54,8 +54,8 @@
       , binding0<Parameters,Keyword,Default>
     >::type type;
 # else
-    typedef typename mpl::apply_wrap2<
-        typename Parameters::binding,Keyword,Default
+    typedef typename mpl::apply_wrap3<
+        typename Parameters::binding,Keyword,Default,mpl::true_
     >::type type;
 
     BOOST_MPL_ASSERT_NOT((
@@ -92,10 +92,11 @@
 template <class Parameters, class Keyword, class DefaultFn>
 struct lazy_binding
 {
-  typedef typename mpl::apply_wrap2<
+  typedef typename mpl::apply_wrap3<
       typename Parameters::binding
     , Keyword
     , typename aux::result_of0<DefaultFn>::type
+    , mpl::true_
   >::type type;
 };
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to