$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: gennaro.prota_at_[hidden]
Date: 2008-07-21 19:46:39
Author: gennaro_prota
Date: 2008-07-21 19:46:39 EDT (Mon, 21 Jul 2008)
New Revision: 47666
URL: http://svn.boost.org/trac/boost/changeset/47666
Log:
dynamic_bitset.hpp: (minor) removed tab characters introduced with revision 35066 on trunk
Text files modified: 
   branches/release/boost/dynamic_bitset/dynamic_bitset.hpp |    10 +++++-----                              
   1 files changed, 5 insertions(+), 5 deletions(-)
Modified: branches/release/boost/dynamic_bitset/dynamic_bitset.hpp
==============================================================================
--- branches/release/boost/dynamic_bitset/dynamic_bitset.hpp	(original)
+++ branches/release/boost/dynamic_bitset/dynamic_bitset.hpp	2008-07-21 19:46:39 EDT (Mon, 21 Jul 2008)
@@ -769,11 +769,11 @@
             b[div] = b[0];
         }
 
-	// disable std::fill_n deprecated warning in MSVC++ 8.0 (warning C4996)
-	// This will only work in MSVC++ 8.0 SP1, which brings up the warning
-	// in the line of user code; otherwise, the warning will come up
-	// in the line in the header itself, so if the user includes stdlib
-	// headers before dynamic_bitset, he will still get the warning.
+    // disable std::fill_n deprecated warning in MSVC++ 8.0 (warning C4996)
+    // This will only work in MSVC++ 8.0 SP1, which brings up the warning
+    // in the line of user code; otherwise, the warning will come up
+    // in the line in the header itself, so if the user includes stdlib
+    // headers before dynamic_bitset, he will still get the warning.
 #if defined(_MSC_VER) && _MSC_VER >= 1400
 #pragma warning(push)
 #pragma warning(disable:4996)