$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84551 - in trunk: boost/iostreams/detail libs/iostreams/test
From: dnljms_at_[hidden]
Date: 2013-05-30 04:28:25
Author: danieljames
Date: 2013-05-30 04:28:24 EDT (Thu, 30 May 2013)
New Revision: 84551
URL: http://svn.boost.org/trac/boost/changeset/84551
Log:
Detab
Text files modified: 
   trunk/boost/iostreams/detail/path.hpp   |     4 ++--                                    
   trunk/libs/iostreams/test/path_test.cpp |     6 +++---                                  
   2 files changed, 5 insertions(+), 5 deletions(-)
Modified: trunk/boost/iostreams/detail/path.hpp
==============================================================================
--- trunk/boost/iostreams/detail/path.hpp	(original)
+++ trunk/boost/iostreams/detail/path.hpp	2013-05-30 04:28:24 EDT (Thu, 30 May 2013)
@@ -106,7 +106,7 @@
     // worth working around).
     template<typename Path>
     typename sfinae<typename Path::external_string_type, path&>::type
-    	operator=(const Path& p)
+        operator=(const Path& p)
     {
         init(p.external_file_string());
         return *this;
@@ -116,7 +116,7 @@
     // Assignment operator taking a boost::filesystem3::path
     template<typename Path>
     typename sfinae<typename Path::codecvt_type, path&>::type
-    	operator=(const Path& p)
+        operator=(const Path& p)
     {
         init(p.native());
         return *this;
Modified: trunk/libs/iostreams/test/path_test.cpp
==============================================================================
--- trunk/libs/iostreams/test/path_test.cpp	(original)
+++ trunk/libs/iostreams/test/path_test.cpp	2013-05-30 04:28:24 EDT (Thu, 30 May 2013)
@@ -12,9 +12,9 @@
 
 void path_test()
 {
-	boost::filesystem::path orig("a/b");
-	boost::iostreams::detail::path p(orig);
-	p = orig;
+    boost::filesystem::path orig("a/b");
+    boost::iostreams::detail::path p(orig);
+    p = orig;
 }
 
 boost::unit_test::test_suite* init_unit_test_suite(int, char* [])