Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52652 - in trunk/boost/spirit/home: karma/binary qi/binary
From: hartmut.kaiser_at_[hidden]
Date: 2009-04-28 08:46:46


Author: hkaiser
Date: 2009-04-28 08:46:45 EDT (Tue, 28 Apr 2009)
New Revision: 52652
URL: http://svn.boost.org/trac/boost/changeset/52652

Log:
Spirit: Minor re-arrangements...
Text files modified:
   trunk/boost/spirit/home/karma/binary/binary.hpp | 10 +++++-----
   trunk/boost/spirit/home/qi/binary/binary.hpp | 12 ++++++------
   2 files changed, 11 insertions(+), 11 deletions(-)

Modified: trunk/boost/spirit/home/karma/binary/binary.hpp
==============================================================================
--- trunk/boost/spirit/home/karma/binary/binary.hpp (original)
+++ trunk/boost/spirit/home/karma/binary/binary.hpp 2009-04-28 08:46:45 EDT (Tue, 28 Apr 2009)
@@ -51,8 +51,8 @@
     BOOST_SPIRIT_ENABLE_BINARY(byte_) // enables byte_
     BOOST_SPIRIT_ENABLE_BINARY(word) // enables word
     BOOST_SPIRIT_ENABLE_BINARY(big_word) // enables big_word
- BOOST_SPIRIT_ENABLE_BINARY(dword) // enables dword
     BOOST_SPIRIT_ENABLE_BINARY(little_word) // enables little_word
+ BOOST_SPIRIT_ENABLE_BINARY(dword) // enables dword
     BOOST_SPIRIT_ENABLE_BINARY(big_dword) // enables big_dword
     BOOST_SPIRIT_ENABLE_BINARY(little_dword) // enables little_dword
 #ifdef BOOST_HAS_LONG_LONG
@@ -70,10 +70,10 @@
 {
     using boost::spirit::byte_;
     using boost::spirit::word;
- using boost::spirit::dword;
     using boost::spirit::big_word;
- using boost::spirit::big_dword;
     using boost::spirit::little_word;
+ using boost::spirit::dword;
+ using boost::spirit::big_dword;
     using boost::spirit::little_dword;
 #ifdef BOOST_HAS_LONG_LONG
     using boost::spirit::qword;
@@ -310,10 +310,10 @@
 
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(byte_, native, 8)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(word, native, 16)
- BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(dword, native, 32)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_word, big, 16)
- BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_dword, big, 32)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_word, little, 16)
+ BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(dword, native, 32)
+ BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_dword, big, 32)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_dword, little, 32)
 #ifdef BOOST_HAS_LONG_LONG
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(qword, native, 64)

Modified: trunk/boost/spirit/home/qi/binary/binary.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/binary/binary.hpp (original)
+++ trunk/boost/spirit/home/qi/binary/binary.hpp 2009-04-28 08:46:45 EDT (Tue, 28 Apr 2009)
@@ -48,10 +48,10 @@
     ///////////////////////////////////////////////////////////////////////////
     BOOST_SPIRIT_ENABLE_BINARY(byte_) // enables byte_
     BOOST_SPIRIT_ENABLE_BINARY(word) // enables word
- BOOST_SPIRIT_ENABLE_BINARY(dword) // enables dword
     BOOST_SPIRIT_ENABLE_BINARY(big_word) // enables big_word
- BOOST_SPIRIT_ENABLE_BINARY(big_dword) // enables big_dword
     BOOST_SPIRIT_ENABLE_BINARY(little_word) // enables little_word
+ BOOST_SPIRIT_ENABLE_BINARY(dword) // enables dword
+ BOOST_SPIRIT_ENABLE_BINARY(big_dword) // enables big_dword
     BOOST_SPIRIT_ENABLE_BINARY(little_dword) // enables little_dword
 #ifdef BOOST_HAS_LONG_LONG
     BOOST_SPIRIT_ENABLE_BINARY(qword) // enables qword
@@ -66,10 +66,10 @@
 {
     using boost::spirit::byte_;
     using boost::spirit::word;
- using boost::spirit::dword;
     using boost::spirit::big_word;
- using boost::spirit::big_dword;
     using boost::spirit::little_word;
+ using boost::spirit::dword;
+ using boost::spirit::big_dword;
     using boost::spirit::little_dword;
 #ifdef BOOST_HAS_LONG_LONG
     using boost::spirit::qword;
@@ -286,10 +286,10 @@
 
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(byte_, native, 8)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(word, native, 16)
- BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(dword, native, 32)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_word, big, 16)
- BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_dword, big, 32)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_word, little, 16)
+ BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(dword, native, 32)
+ BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(big_dword, big, 32)
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(little_dword, little, 32)
 #ifdef BOOST_HAS_LONG_LONG
     BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(qword, native, 64)


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