Trim trailing spaces.

This commit is contained in:
Andrey Semashev 2025-01-26 15:45:03 +03:00
parent cf43da4286
commit 32d19a72e1
4 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@ namespace detail
// and the result is computed in the nested rebind template.
template <class Value>
struct is_lvalue_iterator_impl
{
{
template <class It>
using DerefT = decltype(*std::declval<It&>());

View File

@ -24,7 +24,7 @@ namespace detail
struct rebind : std::is_convertible<
decltype(*std::declval<It&>())
, typename std::add_lvalue_reference<Value>::type
>
>
{};
};

View File

@ -34,7 +34,7 @@ namespace detail
struct iterator_pointee
{
typedef typename std::iterator_traits<Iterator>::value_type value_type;
typedef typename std::conditional<
std::is_const<
typename std::remove_reference<decltype(*std::declval<Iterator&>())>::type

View File

@ -160,7 +160,7 @@ int main( void )
// Undo change to vect1
ZI_TUPLE_GET(1)(ref_tuple) = dblOldVal;
#if defined(ZI_USE_BOOST_TUPLE)
/////////////////////////////////////////////////////////////////////////////
@ -295,7 +295,7 @@ int main( void )
++num_failed_tests;
std::cout << "not OK" << std::endl;
}
#endif
/////////////////////////////////////////////////////////////////////////////
@ -841,7 +841,7 @@ int main( void )
++num_failed_tests;
std::cout << "not OK" << std::endl;
}
#endif
// Done