mirror of
https://github.com/boostorg/detail.git
synced 2025-07-31 21:04:27 +02:00
Corrected indents, removed trailing spaces.
This commit is contained in:
@@ -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))
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user