|
Boost-Commit : |
From: eric_at_[hidden]
Date: 2008-05-14 13:28:40
Author: eric_niebler
Date: 2008-05-14 13:28:39 EDT (Wed, 14 May 2008)
New Revision: 45356
URL: http://svn.boost.org/trac/boost/changeset/45356
Log:
rename BOOST_PROTO_DECLARE_MEMBERS to BOOST_PROTO_EXTENDS_MEMBERS
Text files modified:
branches/proto/v4/boost/proto/extends.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: branches/proto/v4/boost/proto/extends.hpp
==============================================================================
--- branches/proto/v4/boost/proto/extends.hpp (original)
+++ branches/proto/v4/boost/proto/extends.hpp 2008-05-14 13:28:39 EDT (Wed, 14 May 2008)
@@ -513,7 +513,7 @@
/// INTERNAL ONLY
///
- #define BOOST_PROTO_DECLARE_MEMBER(R, DATA, ELEM) \
+ #define BOOST_PROTO_EXTENDS_MEMBER_(R, DATA, ELEM) \
boost::proto::exprns_::virtual_member< \
proto_derived_expr \
, BOOST_PP_TUPLE_ELEM(2, 0, ELEM) \
@@ -523,11 +523,11 @@
/// \brief For declaring virtual data members in an extension class.
///
- #define BOOST_PROTO_DECLARE_MEMBERS(SEQ) \
+ #define BOOST_PROTO_EXTENDS_MEMBERS(SEQ) \
union \
{ \
char proto_member_union_start_; \
- BOOST_PP_SEQ_FOR_EACH(BOOST_PROTO_DECLARE_MEMBER, ~, SEQ) \
+ BOOST_PP_SEQ_FOR_EACH(BOOST_PROTO_EXTENDS_MEMBER_, ~, SEQ) \
}; \
/**/
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