|
Boost-Commit : |
From: chochlik_at_[hidden]
Date: 2008-04-21 12:45:01
Author: matus.chochlik
Date: 2008-04-21 12:45:01 EDT (Mon, 21 Apr 2008)
New Revision: 44701
URL: http://svn.boost.org/trac/boost/changeset/44701
Log:
Minor changes to meta_class.hpp to get things going with g++
Text files modified:
sandbox/mirror/boost/mirror/meta_class.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/mirror/boost/mirror/meta_class.hpp
==============================================================================
--- sandbox/mirror/boost/mirror/meta_class.hpp (original)
+++ sandbox/mirror/boost/mirror/meta_class.hpp 2008-04-21 12:45:01 EDT (Mon, 21 Apr 2008)
@@ -344,7 +344,7 @@
{
typedef typename mpl::int_<mpl::minus<
mpl::int_<I>,
- mpl::size<inherited_member_attrib_type_list>::type
+ typename mpl::size<inherited_member_attrib_type_list>::type
>::value> new_pos_type;
return meta_class::attributes::get(context, new_pos_type());
}
@@ -378,7 +378,7 @@
{
typedef typename mpl::int_<mpl::minus<
mpl::int_<I>,
- mpl::size<inherited_member_attrib_type_list>::type
+ typename mpl::size<inherited_member_attrib_type_list>::type
>::value> new_pos_type;
return meta_class::attributes::query(context, new_pos_type(), dest);
}
@@ -411,7 +411,7 @@
{
typedef typename mpl::int_<mpl::minus<
mpl::int_<I>,
- mpl::size<inherited_member_attrib_type_list>::type
+ typename mpl::size<inherited_member_attrib_type_list>::type
>::value> new_pos_type;
meta_class::attributes::set(context, new_pos_type(), value);
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk