From 73b4cd332500a3672adf7789b5d26265ad3ee185 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/python/enum.hpp | 2 +- include/boost/python/make_constructor.hpp | 6 +++--- test/map_indexing_suite.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) mode change 100755 => 100644 include/boost/python/make_constructor.hpp diff --git a/include/boost/python/enum.hpp b/include/boost/python/enum.hpp index 57684530..c47f8477 100644 --- a/include/boost/python/enum.hpp +++ b/include/boost/python/enum.hpp @@ -41,7 +41,7 @@ inline enum_::enum_(char const* name, char const* doc ) , &enum_::convertible_from_python , &enum_::construct , type_id() - , doc + , doc ) { } diff --git a/include/boost/python/make_constructor.hpp b/include/boost/python/make_constructor.hpp old mode 100755 new mode 100644 index 972de5fc..8ae722bb --- a/include/boost/python/make_constructor.hpp +++ b/include/boost/python/make_constructor.hpp @@ -105,12 +105,12 @@ namespace detail // If the BasePolicy_ supplied a result converter it would be // ignored; issue an error if it's not the default. #if defined _MSC_VER && _MSC_VER < 1300 - typedef is_same< + typedef is_same< typename BasePolicy_::result_converter , default_result_converter > same_result_converter; - //see above for explanation - BOOST_STATIC_ASSERT(same_result_converter::value) ; + //see above for explanation + BOOST_STATIC_ASSERT(same_result_converter::value) ; #else BOOST_MPL_ASSERT_MSG( (is_same< diff --git a/test/map_indexing_suite.cpp b/test/map_indexing_suite.cpp index 899d71f2..b8771cf4 100644 --- a/test/map_indexing_suite.cpp +++ b/test/map_indexing_suite.cpp @@ -62,7 +62,7 @@ BOOST_PYTHON_MODULE(map_indexing_suite_ext) void a_map_indexing_suite(); // moved to a_map_indexing_suite.cpp to a_map_indexing_suite(); // avoid MSVC 6/7 internal structure overflow - + } #include "module_tail.cpp"