$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r60034 - sandbox/statistics/detail/assign/boost/assign/auto_size/detail
From: erwann.rogard_at_[hidden]
Date: 2010-03-01 09:43:17
Author: e_r
Date: 2010-03-01 09:43:17 EST (Mon, 01 Mar 2010)
New Revision: 60034
URL: http://svn.boost.org/trac/boost/changeset/60034
Log:
m
Text files modified: 
   sandbox/statistics/detail/assign/boost/assign/auto_size/detail/csv.hpp |    18 +++++++++---------                      
   1 files changed, 9 insertions(+), 9 deletions(-)
Modified: sandbox/statistics/detail/assign/boost/assign/auto_size/detail/csv.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/auto_size/detail/csv.hpp	(original)
+++ sandbox/statistics/detail/assign/boost/assign/auto_size/detail/csv.hpp	2010-03-01 09:43:17 EST (Mon, 01 Mar 2010)
@@ -63,22 +63,22 @@
 }                                                                           \
 /**/
 
-#define BOOST_ASSIGN_CSV_ITER(F,N)											\
-	BOOST_ASSIGN_CSV_ITER_UNQUAL(F,T,T,N)									\
-	BOOST_ASSIGN_CSV_ITER_UNQUAL(BOOST_PP_CAT(c,F),T,const T,N)				\
+#define BOOST_ASSIGN_CSV_ITER(F,N)                                          \
+	BOOST_ASSIGN_CSV_ITER_UNQUAL(F,T,T,N)                                   \
+	BOOST_ASSIGN_CSV_ITER_UNQUAL(BOOST_PP_CAT(c,F),T,const T,N)             \
 /**/
 
 // overloads begin at n = 1
-#define BOOST_ASSIGN_CSV_SHIFTED_ITER(z,n,F) 								\
-	BOOST_ASSIGN_CSV_ITER(F,BOOST_PP_ADD(n,1))								\
+#define BOOST_ASSIGN_CSV_SHIFTED_ITER(z,n,F)                                \
+	BOOST_ASSIGN_CSV_ITER(F,BOOST_PP_ADD(n,1))                              \
 /**/
 
-#define BOOST_ASSIGN_CSV_REPEAT(fun,N) 										\
-	BOOST_PP_REPEAT(N,BOOST_ASSIGN_CSV_SHIFTED_ITER,fun)					\
+#define BOOST_ASSIGN_CSV_REPEAT(fun,N)                                      \
+	BOOST_PP_REPEAT(N,BOOST_ASSIGN_CSV_SHIFTED_ITER,fun)                    \
 /**/
 
-#define BOOST_ASSIGN_CSV(fun) 												\
-	BOOST_ASSIGN_CSV_REPEAT(fun,BOOST_ASSIGN_CSV_SIZE)						\
+#define BOOST_ASSIGN_CSV(fun)                                               \
+	BOOST_ASSIGN_CSV_REPEAT(fun,BOOST_ASSIGN_CSV_SIZE)                      \
 /**/
 
 #endif