From e57213b29868c83e02e8756fd09ab121c386754a Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Wed, 20 May 2009 19:41:20 +0000 Subject: [PATCH] Fixed almost all tab and min/max issues found by inspect tool [SVN r53142] --- include/boost/utility/result_of.hpp | 4 ++-- swap/test/std_bitset.cpp | 2 +- swap/test/swap_test_class.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/utility/result_of.hpp b/include/boost/utility/result_of.hpp index cdcac34..e35e098 100644 --- a/include/boost/utility/result_of.hpp +++ b/include/boost/utility/result_of.hpp @@ -70,8 +70,8 @@ struct result_of_nested_result : F::template result template struct result_of_impl : mpl::if_, - result_of_void_impl, - result_of_nested_result >::type + result_of_void_impl, + result_of_nested_result >::type {}; } // end namespace detail diff --git a/swap/test/std_bitset.cpp b/swap/test/std_bitset.cpp index 4b9fbae..d8d69e7 100644 --- a/swap/test/std_bitset.cpp +++ b/swap/test/std_bitset.cpp @@ -19,7 +19,7 @@ int test_main(int, char*[]) typedef std::bitset<8> bitset_type; const bitset_type initial_value1 = 1ul; const bitset_type initial_value2 = 2ul; - + bitset_type object1 = initial_value1; bitset_type object2 = initial_value2; diff --git a/swap/test/swap_test_class.hpp b/swap/test/swap_test_class.hpp index 8cf1fe9..a25dbbd 100644 --- a/swap/test/swap_test_class.hpp +++ b/swap/test/swap_test_class.hpp @@ -12,7 +12,7 @@ class swap_test_class { - int m_data; + int m_data; public: explicit swap_test_class(int arg = 0) :