$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: hartmut.kaiser_at_[hidden]
Date: 2008-06-27 15:33:30
Author: hkaiser
Date: 2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
New Revision: 46790
URL: http://svn.boost.org/trac/boost/changeset/46790
Log:
Spirit: more inspect fixes
Text files modified: 
   trunk/boost/spirit/home/classic/core/non_terminal/impl/static.hpp |     2 +-                                      
   trunk/boost/spirit/home/phoenix/detail/type_deduction.hpp         |     2 +-                                      
   trunk/boost/spirit/home/phoenix/statement/detail/switch.hpp       |     6 +++---                                  
   trunk/boost/spirit/home/phoenix/statement/for.hpp                 |     2 +-                                      
   trunk/boost/spirit/home/phoenix/stl/container/container.hpp       |    16 ++++++++--------                        
   trunk/boost/spirit/home/qi/stream/detail/match_manip.hpp          |     2 +-                                      
   trunk/boost/spirit/home/support/detail/integer/endian.hpp         |    10 +++++-----                              
   7 files changed, 20 insertions(+), 20 deletions(-)
Modified: trunk/boost/spirit/home/classic/core/non_terminal/impl/static.hpp
==============================================================================
--- trunk/boost/spirit/home/classic/core/non_terminal/impl/static.hpp	(original)
+++ trunk/boost/spirit/home/classic/core/non_terminal/impl/static.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -34,7 +34,7 @@
     //  Requirements:
     //      T is default constructible
     //          (There's an alternate implementation that relaxes this
-    //              requirement -- João Abecasis)
+    //              requirement -- Joao Abecasis)
     //      T::T() MUST not throw!
     //          this is a requirement of boost::call_once.
     //
Modified: trunk/boost/spirit/home/phoenix/detail/type_deduction.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/detail/type_deduction.hpp	(original)
+++ trunk/boost/spirit/home/phoenix/detail/type_deduction.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -459,7 +459,7 @@
                                                                                 \
         BOOST_STATIC_CONSTANT(int, index = (size / sizeof(char)) - 1);          \
                                                                                 \
-        typedef typename mpl::at_c<                                  	        \
+        typedef typename mpl::at_c<                                             \
             typename base_type::types, index>::type id;                         \
         typedef typename id::type type;                                         \
     };
Modified: trunk/boost/spirit/home/phoenix/statement/detail/switch.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/statement/detail/switch.hpp	(original)
+++ trunk/boost/spirit/home/phoenix/statement/detail/switch.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -74,21 +74,21 @@
                     is_default_case<Case>
                   , fusion::result_of::push_front<Seq const, actor<Case> >
                   , fusion::result_of::push_back<Seq const, actor<Case> >
-	        >::type>::type
+            >::type>::type
             type;
 
             static type
             eval(Seq const& seq, Case const& case_, mpl::false_)
             {
                 return fusion::as_vector(
-		    		fusion::push_back(seq, actor<Case>(case_)));
+                    fusion::push_back(seq, actor<Case>(case_)));
             }
 
             static type
             eval(Seq const& seq, Case const& case_, mpl::true_)
             {
                 return fusion::as_vector(
-		    		fusion::push_front(seq, actor<Case>(case_)));
+                    fusion::push_front(seq, actor<Case>(case_)));
             }
 
             static type
Modified: trunk/boost/spirit/home/phoenix/statement/for.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/statement/for.hpp	(original)
+++ trunk/boost/spirit/home/phoenix/statement/for.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -27,7 +27,7 @@
           , typename Init, typename Cond, typename Step, typename Do>
         static void
         eval(
-        	Env const& env
+            Env const& env
           , Init& init, Cond& cond, Step& step, Do& do_)
         {
             for (init.eval(env); cond.eval(env); step.eval(env))
Modified: trunk/boost/spirit/home/phoenix/stl/container/container.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/stl/container/container.hpp	(original)
+++ trunk/boost/spirit/home/phoenix/stl/container/container.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -37,17 +37,17 @@
 //      Lazy functions are provided for all of the member functions of the
 //      following containers:
 //
-//      deque · list · map · multimap · vector.
+//      deque - list - map - multimap - vector.
 //
 //      Indeed, should *your* class have member functions with the same names
 //      and signatures as those listed below, then it will automatically be
 //      supported. To summarize, lazy functions are provided for member
 //      functions:
 //
-//          assign · at · back · begin · capacity · clear · empty · end ·
-//          erase · front · get_allocator · insert · key_comp · max_size ·
-//          pop_back · pop_front · push_back · push_front · rbegin · rend ·
-//          reserve · resize . size · splice · value_comp.
+//          assign - at - back - begin - capacity - clear - empty - end -
+//          erase - front - get_allocator - insert - key_comp - max_size -
+//          pop_back - pop_front - push_back - push_front - rbegin - rend -
+//          reserve - resize . size - splice - value_comp.
 //
 //      The lazy functions' names are the same as the corresponding member
 //      function. Sample usage:
@@ -322,7 +322,7 @@
             template <typename C>
             struct result
             {
-        	    typedef typename allocator_type_of<C>::type type;
+                typedef typename allocator_type_of<C>::type type;
             };
 
             template <typename C>
@@ -392,7 +392,7 @@
 
                 typedef typename
                     boost::mpl::eval_if<
-        		        boost::is_same<Arg2, fusion::void_>
+                        boost::is_same<Arg2, fusion::void_>
                       , choice_1
                       , choice_2
                     >::type
@@ -403,7 +403,7 @@
             typename result<C, Arg1>::type
             operator()(C& c, Arg1 const& arg1) const
             {
-        	    return c.insert(arg1);
+                return c.insert(arg1);
             }
 
             template <typename C, typename Arg1, typename Arg2>
Modified: trunk/boost/spirit/home/qi/stream/detail/match_manip.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/stream/detail/match_manip.hpp	(original)
+++ trunk/boost/spirit/home/qi/stream/detail/match_manip.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -1,6 +1,6 @@
 //  Copyright (c) 2001-2008 Hartmut Kaiser
 // 
-//  Distributed under the Boist Software License, Version 1.0. (See accompanying 
+//  Distributed under the Boost Software License, Version 1.0. (See accompanying 
 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
 #if !defined(BOOST_SPIRIT_FORMAT_MANIP_MAY_05_2007_1203PM)
Modified: trunk/boost/spirit/home/support/detail/integer/endian.hpp
==============================================================================
--- trunk/boost/spirit/home/support/detail/integer/endian.hpp	(original)
+++ trunk/boost/spirit/home/support/detail/integer/endian.hpp	2008-06-27 15:33:29 EDT (Fri, 27 Jun 2008)
@@ -151,7 +151,7 @@
         operator T() const 
           { return detail::load_big_endian<T, n_bits/8>(bytes); }
       private:
-  	    char bytes[n_bits/8];
+        char bytes[n_bits/8];
     };
 
     template <typename T, std::size_t n_bits>
@@ -166,7 +166,7 @@
         operator T() const
           { return detail::load_little_endian<T, n_bits/8>(bytes); }
       private:
-  	    char bytes[n_bits/8];
+        char bytes[n_bits/8];
     };
 
     template <typename T, std::size_t n_bits>
@@ -187,7 +187,7 @@
           { return detail::load_little_endian<T, n_bits/8>(bytes); }
 #     endif
       private:
-  	    char bytes[n_bits/8];
+        char bytes[n_bits/8];
     };
 
     //  Specializations that mimic built-in integer types.
@@ -211,7 +211,7 @@
           { return detail::load_big_endian<T, sizeof(T)>(&integer); }
     #endif
       private:
-  	    T integer;
+       T integer;
     };
 
     template <typename T, std::size_t n_bits>
@@ -233,7 +233,7 @@
           { return detail::load_little_endian<T, sizeof(T)>(&integer); }
     #endif
       private:
-  	    T integer;
+        T integer;
     };
 
   //  naming convention typedefs  --------------------------------------------//