Update of /cvsroot/boost/boost/boost/xpressive/proto
In directory
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23334/boost/xpressive/proto
Modified Files:
debug.hpp operators.hpp proto_fwd.hpp proto_typeof.hpp
tags.hpp traits.hpp
Log Message:
s/multilpies/multiplies/g
Index: debug.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/debug.hpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- debug.hpp 30 Jun 2007 15:53:04 -0000 1.13
+++ debug.hpp 10 Jul 2007 05:12:23 -0000 1.14
@@ -100,7 +100,7 @@
BOOST_PROTO_DEFINE_TAG_NAME(assign)
BOOST_PROTO_DEFINE_TAG_NAME(shift_left_assign)
BOOST_PROTO_DEFINE_TAG_NAME(shift_right_assign)
- BOOST_PROTO_DEFINE_TAG_NAME(multilpies_assign)
+ BOOST_PROTO_DEFINE_TAG_NAME(multiplies_assign)
BOOST_PROTO_DEFINE_TAG_NAME(divides_assign)
BOOST_PROTO_DEFINE_TAG_NAME(modulus_assign)
BOOST_PROTO_DEFINE_TAG_NAME(plus_assign)
Index: operators.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/operators.hpp,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- operators.hpp 6 Jul 2007 08:54:43 -0000 1.38
+++ operators.hpp 10 Jul 2007 05:12:23 -0000 1.39
@@ -262,7 +262,7 @@
BOOST_PROTO_DEFINE_BINARY_OPERATOR(<<=, tag::shift_left_assign)
BOOST_PROTO_DEFINE_BINARY_OPERATOR(>>=, tag::shift_right_assign)
- BOOST_PROTO_DEFINE_BINARY_OPERATOR(*=, tag::multilpies_assign)
+ BOOST_PROTO_DEFINE_BINARY_OPERATOR(*=, tag::multiplies_assign)
BOOST_PROTO_DEFINE_BINARY_OPERATOR(/=, tag::divides_assign)
BOOST_PROTO_DEFINE_BINARY_OPERATOR(%=, tag::modulus_assign)
BOOST_PROTO_DEFINE_BINARY_OPERATOR(+=, tag::plus_assign)
@@ -378,7 +378,7 @@
BOOST_PROTO_DEFINE_BINARY_OPERATOR(->*, boost::proto::tag::mem_ptr, TRAIT,
DOMAIN) \
BOOST_PROTO_DEFINE_BINARY_OPERATOR(<<=,
boost::proto::tag::shift_left_assign, TRAIT, DOMAIN) \
BOOST_PROTO_DEFINE_BINARY_OPERATOR(>>=,
boost::proto::tag::shift_right_assign, TRAIT, DOMAIN) \
- BOOST_PROTO_DEFINE_BINARY_OPERATOR(*=,
boost::proto::tag::multilpies_assign, TRAIT, DOMAIN) \
+ BOOST_PROTO_DEFINE_BINARY_OPERATOR(*=,
boost::proto::tag::multiplies_assign, TRAIT, DOMAIN) \
BOOST_PROTO_DEFINE_BINARY_OPERATOR(/=, boost::proto::tag::divides_assign,
TRAIT, DOMAIN) \
BOOST_PROTO_DEFINE_BINARY_OPERATOR(%=, boost::proto::tag::modulus_assign,
TRAIT, DOMAIN) \
BOOST_PROTO_DEFINE_BINARY_OPERATOR(+=, boost::proto::tag::plus_assign,
TRAIT, DOMAIN) \
Index: proto_fwd.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/proto_fwd.hpp,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -d -r1.87 -r1.88
--- proto_fwd.hpp 9 Jul 2007 18:11:17 -0000 1.87
+++ proto_fwd.hpp 10 Jul 2007 05:12:24 -0000 1.88
@@ -103,7 +103,7 @@
struct assign;
struct shift_left_assign;
struct shift_right_assign;
- struct multilpies_assign;
+ struct multiplies_assign;
struct divides_assign;
struct modulus_assign;
struct plus_assign;
@@ -389,7 +389,7 @@
template<typename T, typename U> struct assign;
template<typename T, typename U> struct shift_left_assign;
template<typename T, typename U> struct shift_right_assign;
- template<typename T, typename U> struct multilpies_assign;
+ template<typename T, typename U> struct multiplies_assign;
template<typename T, typename U> struct divides_assign;
template<typename T, typename U> struct modulus_assign;
template<typename T, typename U> struct plus_assign;
Index: proto_typeof.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/proto_typeof.hpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- proto_typeof.hpp 7 Jul 2007 03:35:49 -0000 1.17
+++ proto_typeof.hpp 10 Jul 2007 05:12:24 -0000 1.18
@@ -52,7 +52,7 @@
BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::assign)
BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::shift_left_assign)
BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::shift_right_assign)
-BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::multilpies_assign)
+BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::multiplies_assign)
BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::divides_assign)
BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::modulus_assign)
BOOST_TYPEOF_REGISTER_TYPE(boost::proto::tag::plus_assign)
Index: tags.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/tags.hpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- tags.hpp 23 Jun 2007 21:22:31 -0000 1.11
+++ tags.hpp 10 Jul 2007 05:12:24 -0000 1.12
@@ -119,7 +119,7 @@
struct shift_right_assign {};
/// Tag type for the binary *= operator.
- struct multilpies_assign {};
+ struct multiplies_assign {};
/// Tag type for the binary /= operator.
struct divides_assign {};
Index: traits.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/traits.hpp,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- traits.hpp 9 Jul 2007 18:11:17 -0000 1.64
+++ traits.hpp 10 Jul 2007 05:12:24 -0000 1.65
@@ -305,7 +305,7 @@
BOOST_PROTO_BINARY_GENERATOR(assign)
BOOST_PROTO_BINARY_GENERATOR(shift_left_assign)
BOOST_PROTO_BINARY_GENERATOR(shift_right_assign)
- BOOST_PROTO_BINARY_GENERATOR(multilpies_assign)
+ BOOST_PROTO_BINARY_GENERATOR(multiplies_assign)
BOOST_PROTO_BINARY_GENERATOR(divides_assign)
BOOST_PROTO_BINARY_GENERATOR(modulus_assign)
BOOST_PROTO_BINARY_GENERATOR(plus_assign)
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs