$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r65115 - trunk/boost/spirit/home/qi/nonterminal
From: hartmut.kaiser_at_[hidden]
Date: 2010-08-29 17:22:45
Author: hkaiser
Date: 2010-08-29 17:22:42 EDT (Sun, 29 Aug 2010)
New Revision: 65115
URL: http://svn.boost.org/trac/boost/changeset/65115
Log:
Spirit: untabified file
Text files modified: 
   trunk/boost/spirit/home/qi/nonterminal/rule.hpp |    16 ++++++++--------                        
   1 files changed, 8 insertions(+), 8 deletions(-)
Modified: trunk/boost/spirit/home/qi/nonterminal/rule.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/nonterminal/rule.hpp	(original)
+++ trunk/boost/spirit/home/qi/nonterminal/rule.hpp	2010-08-29 17:22:42 EDT (Sun, 29 Aug 2010)
@@ -368,20 +368,20 @@
       , typename T3_, typename T4_, typename Expr>
     rule<OutputIterator_, T1_, T2_, T3_, T4_>& operator%=(
         rule<OutputIterator_, T1_, T2_, T3_, T4_>& r, Expr const& expr)
-	{
-		// Report invalid expression error as early as possible.
-		// If you got an error_invalid_expression error message here,
-		// then the expression (expr) is not a valid spirit qi expression.
-		BOOST_SPIRIT_ASSERT_MATCH(qi::domain, Expr);
+    {
+        // Report invalid expression error as early as possible.
+        // If you got an error_invalid_expression error message here,
+        // then the expression (expr) is not a valid spirit qi expression.
+        BOOST_SPIRIT_ASSERT_MATCH(qi::domain, Expr);
 
         typedef typename 
             rule<OutputIterator_, T1_, T2_, T3_, T4_>::encoding_modifier_type
         encoding_modifier_type;
 
         r.f = detail::bind_parser<mpl::true_>(
-			compile<qi::domain>(expr, encoding_modifier_type()));
-		return r;
-	}
+            compile<qi::domain>(expr, encoding_modifier_type()));
+        return r;
+    }
 
     template <typename Iterator_, typename T1_, typename T2_
       , typename T3_, typename T4_, typename Expr>