Skip to content

Commit 3ecb330

Browse files
committed
Fixed most tab and min/max issues from trunk inspection report
[SVN r53141]
1 parent e16b3f8 commit 3ecb330

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

include/boost/python/enum.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ inline enum_<T>::enum_(char const* name, char const* doc )
4141
, &enum_<T>::convertible_from_python
4242
, &enum_<T>::construct
4343
, type_id<T>()
44-
, doc
44+
, doc
4545
)
4646
{
4747
}

include/boost/python/make_constructor.hpp

100755100644
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ namespace detail
105105
// If the BasePolicy_ supplied a result converter it would be
106106
// ignored; issue an error if it's not the default.
107107
#if defined _MSC_VER && _MSC_VER < 1300
108-
typedef is_same<
108+
typedef is_same<
109109
typename BasePolicy_::result_converter
110110
, default_result_converter
111111
> same_result_converter;
112-
//see above for explanation
113-
BOOST_STATIC_ASSERT(same_result_converter::value) ;
112+
//see above for explanation
113+
BOOST_STATIC_ASSERT(same_result_converter::value) ;
114114
#else
115115
BOOST_MPL_ASSERT_MSG(
116116
(is_same<

test/map_indexing_suite.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ BOOST_PYTHON_MODULE(map_indexing_suite_ext)
6262

6363
void a_map_indexing_suite(); // moved to a_map_indexing_suite.cpp to
6464
a_map_indexing_suite(); // avoid MSVC 6/7 internal structure overflow
65-
65+
6666
}
6767

6868
#include "module_tail.cpp"

0 commit comments

Comments
 (0)