$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r51644 - in trunk: libs/unordered/test/helpers tools/quickbook/detail
From: daniel_james_at_[hidden]
Date: 2009-03-08 05:44:52
Author: danieljames
Date: 2009-03-08 05:44:51 EDT (Sun, 08 Mar 2009)
New Revision: 51644
URL: http://svn.boost.org/trac/boost/changeset/51644
Log:
Detab.
Text files modified: 
   trunk/libs/unordered/test/helpers/list.hpp |    38 +++++++++++++++++++-------------------  
   trunk/tools/quickbook/detail/quickbook.cpp |     2 +-                                      
   2 files changed, 20 insertions(+), 20 deletions(-)
Modified: trunk/libs/unordered/test/helpers/list.hpp
==============================================================================
--- trunk/libs/unordered/test/helpers/list.hpp	(original)
+++ trunk/libs/unordered/test/helpers/list.hpp	2009-03-08 05:44:51 EDT (Sun, 08 Mar 2009)
@@ -243,27 +243,27 @@
         node** merge_adjacent_ranges(node** first, node** second,
                 node** third, Less less)
         {
-        	while(true) {
-        		while(true) {
-        			if(first == second) return third;
-        			if(less((*second)->value_, (*first)->value_)) break;
-        			first = &(*first)->next_;
-        		}
+            while(true) {
+                while(true) {
+                    if(first == second) return third;
+                    if(less((*second)->value_, (*first)->value_)) break;
+                    first = &(*first)->next_;
+                }
 
-        		swap_adjacent_ranges(first, second, third);
-        		first = &(*first)->next_;
-        		
-        		// Since the two ranges we just swapped, the order is now:
-        		// first...third...second
-        		
-        		while(true) {
-        			if(first == third) return second;
-        			if(!less((*first)->value_, (*third)->value_)) break;
-        			first = &(*first)->next_;
-        		}
+                swap_adjacent_ranges(first, second, third);
+                first = &(*first)->next_;
+                
+                // Since the two ranges we just swapped, the order is now:
+                // first...third...second
+                
+                while(true) {
+                    if(first == third) return second;
+                    if(!less((*first)->value_, (*third)->value_)) break;
+                    first = &(*first)->next_;
+                }
 
-	        	swap_adjacent_ranges(first, third, second);
-        		first = &(*first)->next_;
+                swap_adjacent_ranges(first, third, second);
+                first = &(*first)->next_;
             }
         }
         
Modified: trunk/tools/quickbook/detail/quickbook.cpp
==============================================================================
--- trunk/tools/quickbook/detail/quickbook.cpp	(original)
+++ trunk/tools/quickbook/detail/quickbook.cpp	2009-03-08 05:44:51 EDT (Sun, 08 Mar 2009)
@@ -91,7 +91,7 @@
         
         if(actor.error_count)
         {
-        	detail::outerr(filein_)
+            detail::outerr(filein_)
                     << "Error count: " << actor.error_count << ".\n";
         }