Corrected indents, removed trailing spaces.

This commit is contained in:
Andrey Semashev
2015-04-02 18:36:26 +03:00
parent 2fe0e70a94
commit b0a2809915

View File

@@ -103,15 +103,15 @@ namespace is_incrementable_
# undef BOOST_comma # undef BOOST_comma
template<typename T> template<typename T>
struct is_incrementable struct is_incrementable :
: public ::boost::integral_constant<bool,::boost::detail::is_incrementable_::impl<T>::value> public boost::integral_constant<bool, boost::detail::is_incrementable_::impl<T>::value>
{ {
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_incrementable,(T)) BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_incrementable,(T))
}; };
template<typename T> template<typename T>
struct is_postfix_incrementable struct is_postfix_incrementable :
: public ::boost::integral_constant<bool,::boost::detail::is_incrementable_::postfix_impl<T>::value> public boost::integral_constant<bool, boost::detail::is_incrementable_::postfix_impl<T>::value>
{ {
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_postfix_incrementable,(T)) BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_postfix_incrementable,(T))
}; };