Update of /cvsroot/boost/boost/boost/parameter
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26990/boost/parameter
Modified Files:
binding.hpp
Log Message:
Fixed borland failures.
Index: binding.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/parameter/binding.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- binding.hpp 20 Sep 2006 15:03:35 -0000 1.7
+++ binding.hpp 23 Sep 2006 10:40:16 -0000 1.8
@@ -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