$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r66922 - sandbox/statistics/support/boost/assign/v2/detail/checking
From: erwann.rogard_at_[hidden]
Date: 2010-11-30 17:02:32
Author: e_r
Date: 2010-11-30 17:02:30 EST (Tue, 30 Nov 2010)
New Revision: 66922
URL: http://svn.boost.org/trac/boost/changeset/66922
Log:
minor upd to boost/assign/v2
Text files modified: 
   sandbox/statistics/support/boost/assign/v2/detail/checking/assert.hpp       |     6 +++---                                  
   sandbox/statistics/support/boost/assign/v2/detail/checking/deduce_check.hpp |     2 +-                                      
   sandbox/statistics/support/boost/assign/v2/detail/checking/map.hpp          |    25 ++++++++++++-------------               
   3 files changed, 16 insertions(+), 17 deletions(-)
Modified: sandbox/statistics/support/boost/assign/v2/detail/checking/assert.hpp
==============================================================================
--- sandbox/statistics/support/boost/assign/v2/detail/checking/assert.hpp	(original)
+++ sandbox/statistics/support/boost/assign/v2/detail/checking/assert.hpp	2010-11-30 17:02:30 EST (Tue, 30 Nov 2010)
@@ -17,8 +17,8 @@
 namespace v2{
 namespace checking{ 
 
-	template<typename P>
-	void do_assert()
+    template<typename P>
+    void do_assert()
     {
             BOOST_STATIC_ASSERT( P::value );
     }
@@ -27,7 +27,7 @@
     void do_assert_is_same(){
         typedef boost::is_same<A,B> pred_;
         checking::do_assert<pred_>();
-	}
+    }
     
 }// checking
 }// v2
Modified: sandbox/statistics/support/boost/assign/v2/detail/checking/deduce_check.hpp
==============================================================================
--- sandbox/statistics/support/boost/assign/v2/detail/checking/deduce_check.hpp	(original)
+++ sandbox/statistics/support/boost/assign/v2/detail/checking/deduce_check.hpp	2010-11-30 17:02:30 EST (Tue, 30 Nov 2010)
@@ -21,7 +21,7 @@
 namespace assign{
 namespace v2{
 namespace switch_tag{
-	struct deduce_check{};
+    struct deduce_check{};
 }// switch_tag
 namespace mpl{
 
Modified: sandbox/statistics/support/boost/assign/v2/detail/checking/map.hpp
==============================================================================
--- sandbox/statistics/support/boost/assign/v2/detail/checking/map.hpp	(original)
+++ sandbox/statistics/support/boost/assign/v2/detail/checking/map.hpp	2010-11-30 17:02:30 EST (Tue, 30 Nov 2010)
@@ -27,21 +27,21 @@
     void do_check(container_tag::map, V & map) // non-const due to operator[]
     {                                      
             {  // Key                                
-        	using namespace checking::constants::sorted;
+            using namespace checking::constants::sorted;
                 do_check(
-           		boost::next( boost::begin( map ), 0 )->first,
-           		boost::next( boost::begin( map ), 1 )->first,
-           		boost::next( boost::begin( map ), 2 )->first,
-           		boost::next( boost::begin( map ), 3 )->first,
-           		boost::next( boost::begin( map ), 4 )->first,
-           		boost::next( boost::begin( map ), 5 )->first,
-           		boost::next( boost::begin( map ), 6 )->first,
-           		boost::next( boost::begin( map ), 7 )->first
+                boost::next( boost::begin( map ), 0 )->first,
+                boost::next( boost::begin( map ), 1 )->first,
+                boost::next( boost::begin( map ), 2 )->first,
+                boost::next( boost::begin( map ), 3 )->first,
+                boost::next( boost::begin( map ), 4 )->first,
+                boost::next( boost::begin( map ), 5 )->first,
+                boost::next( boost::begin( map ), 6 )->first,
+                boost::next( boost::begin( map ), 7 )->first
                 );
         }
         {  // Data
-        	using namespace checking::constants;
-        	do_check(
+            using namespace checking::constants;
+            do_check(
                     map[ a ],
                     map[ b ],
                     map[ c ],
@@ -50,8 +50,7 @@
                     map[ f ],
                     map[ g ],
                     map[ h ]
-        	);
-            
+            );
         }
     }