Boost logo

Boost-Commit :

From: joel_at_[hidden]
Date: 2008-07-22 05:06:54


Author: djowel
Date: 2008-07-22 05:06:54 EDT (Tue, 22 Jul 2008)
New Revision: 47675
URL: http://svn.boost.org/trac/boost/changeset/47675

Log:
fixed non-ascii chars
Text files modified:
   trunk/libs/fusion/test/functional/invoke.cpp | 20 ++++++++++----------
   trunk/libs/fusion/test/functional/invoke_function_object.cpp | 10 +++++-----
   trunk/libs/fusion/test/functional/invoke_procedure.cpp | 10 +++++-----
   3 files changed, 20 insertions(+), 20 deletions(-)

Modified: trunk/libs/fusion/test/functional/invoke.cpp
==============================================================================
--- trunk/libs/fusion/test/functional/invoke.cpp (original)
+++ trunk/libs/fusion/test/functional/invoke.cpp 2008-07-22 05:06:54 EDT (Tue, 22 Jul 2008)
@@ -1,8 +1,8 @@
 /*=============================================================================
- Copyright (c) 2005-2006 João Abecasis
+ Copyright (c) 2005-2006 Joao Abecasis
     Copyright (c) 2006-2007 Tobias Schwinger
-
- Use modification and distribution are subject to the Boost Software
+
+ Use modification and distribution are subject to the Boost Software
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt).
 ==============================================================================*/
@@ -127,10 +127,10 @@
 {
   public:
     int data;
-
+
     members()
         : data(20)
- { }
+ { }
 
     int nullary() { return data + 1; }
     int nullary_c() const { return data + 2; }
@@ -340,17 +340,17 @@
     using boost::is_same;
 
     BOOST_TEST(( is_same<
- fusion::result_of::invoke<int (*)(), fusion::vector0 >::type, int
+ fusion::result_of::invoke<int (*)(), fusion::vector0 >::type, int
>::value ));
 // disabled until boost::result_of supports it
 // BOOST_TEST(( is_same<
-// fusion::result_of::invoke<int (*)(...), fusion::vector1<int> >::type, int
+// fusion::result_of::invoke<int (*)(...), fusion::vector1<int> >::type, int
 // >::value ));
- BOOST_TEST(( is_same<
- fusion::result_of::invoke<int (members::*)(), fusion::vector1<members*> >::type, int
+ BOOST_TEST(( is_same<
+ fusion::result_of::invoke<int (members::*)(), fusion::vector1<members*> >::type, int
>::value ));
 // disabled until boost::result_of supports it
-// BOOST_TEST(( is_same<
+// BOOST_TEST(( is_same<
 // fusion::result_of::invoke<int (members::*)(...), fusion::vector2<members*,int> >::type, int
 // >::value ));
 }

Modified: trunk/libs/fusion/test/functional/invoke_function_object.cpp
==============================================================================
--- trunk/libs/fusion/test/functional/invoke_function_object.cpp (original)
+++ trunk/libs/fusion/test/functional/invoke_function_object.cpp 2008-07-22 05:06:54 EDT (Tue, 22 Jul 2008)
@@ -1,8 +1,8 @@
 /*=============================================================================
- Copyright (c) 2005-2006 João Abecasis
+ Copyright (c) 2005-2006 Joao Abecasis
     Copyright (c) 2006-2007 Tobias Schwinger
-
- Use modification and distribution are subject to the Boost Software
+
+ Use modification and distribution are subject to the Boost Software
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt).
 ==============================================================================*/
@@ -41,7 +41,7 @@
 struct fobj
 {
     // Handle nullary separately to exercise result_of support
- template <typename Sig>
+ template <typename Sig>
     struct result;
 
     template <class Self, typename T0>
@@ -97,7 +97,7 @@
     {
         typedef int type;
     };
-
+
     int operator()(int i) { return 14 + i; }
     int operator()(int i) const { return 15 + i; }
 };

Modified: trunk/libs/fusion/test/functional/invoke_procedure.cpp
==============================================================================
--- trunk/libs/fusion/test/functional/invoke_procedure.cpp (original)
+++ trunk/libs/fusion/test/functional/invoke_procedure.cpp 2008-07-22 05:06:54 EDT (Tue, 22 Jul 2008)
@@ -1,8 +1,8 @@
 /*=============================================================================
- Copyright (c) 2005-2006 João Abecasis
+ Copyright (c) 2005-2006 Joao Abecasis
     Copyright (c) 2006-2007 Tobias Schwinger
-
- Use modification and distribution are subject to the Boost Software
+
+ Use modification and distribution are subject to the Boost Software
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt).
 ==============================================================================*/
@@ -48,10 +48,10 @@
 {
   public:
     int data;
-
+
     members()
         : data(20)
- { }
+ { }
 
     int nullary() { return element1 = data + 1; }
     int nullary_c() const { return element1 = data + 2; }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk