$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r74093 - sandbox/maps/boost/maps/generic
From: bjs3141_at_[hidden]
Date: 2011-08-27 15:25:02
Author: brian.smith
Date: 2011-08-27 15:25:02 EDT (Sat, 27 Aug 2011)
New Revision: 74093
URL: http://svn.boost.org/trac/boost/changeset/74093
Log:
commit
Text files modified: 
   sandbox/maps/boost/maps/generic/array.hpp   |     6 ++----                                  
   sandbox/maps/boost/maps/generic/array_.hpp  |     6 ++----                                  
   sandbox/maps/boost/maps/generic/pointer.hpp |     6 ++----                                  
   3 files changed, 6 insertions(+), 12 deletions(-)
Modified: sandbox/maps/boost/maps/generic/array.hpp
==============================================================================
--- sandbox/maps/boost/maps/generic/array.hpp	(original)
+++ sandbox/maps/boost/maps/generic/array.hpp	2011-08-27 15:25:02 EDT (Sat, 27 Aug 2011)
@@ -93,12 +93,10 @@
             type f = p, l = p+S, r = q;
             allocator a;
             try
-            {   for (; f != l; ++f, ++r)
-		            a.construct(f, *r);
+            {   for (; f != l; ++f, ++r) a.construct(f, *r);
             }catch( ... )
             {   type n = p;
-                for (; n != r; ++n)
-		            a.destroy(n);
+                for (; n != r; ++n) a.destroy(n);
                 throw;
             }
         }
Modified: sandbox/maps/boost/maps/generic/array_.hpp
==============================================================================
--- sandbox/maps/boost/maps/generic/array_.hpp	(original)
+++ sandbox/maps/boost/maps/generic/array_.hpp	2011-08-27 15:25:02 EDT (Sat, 27 Aug 2011)
@@ -92,12 +92,10 @@
             type f = p, l = p+S, r = q;
             allocator a;
             try
-            {   for (; f != l; ++f, ++r)
-		            a.construct(f, *r);
+            {   for (; f != l; ++f, ++r) a.construct(f, *r);
             }catch( ... )
             {   type n = p;
-                for (; n != r; ++n)
-		            a.destroy(n);
+                for (; n != r; ++n) a.destroy(n);
                 throw;
             }
         }
Modified: sandbox/maps/boost/maps/generic/pointer.hpp
==============================================================================
--- sandbox/maps/boost/maps/generic/pointer.hpp	(original)
+++ sandbox/maps/boost/maps/generic/pointer.hpp	2011-08-27 15:25:02 EDT (Sat, 27 Aug 2011)
@@ -93,12 +93,10 @@
             type f = p, l = p+s, r = q;
             allocator a;
             try
-            {   for (; f != l; ++f, ++r)
-		            a.construct(f, *r);
+            {   for (; f != l; ++f, ++r) a.construct(f, *r);
             }catch( ... )
             {   type n = p;
-                for (; n != r; ++n)
-		            a.destroy(n);
+                for (; n != r; ++n) a.destroy(n);
                 throw;
             }
         }