mirror of
https://github.com/boostorg/tuple.git
synced 2025-06-26 12:31:55 +02:00
Compare commits
1 Commits
svn-branch
...
svn-branch
Author | SHA1 | Date | |
---|---|---|---|
5f6c33b4a8 |
@ -648,8 +648,8 @@ namespace tuples {
|
||||
detail::assign_to_pointee<T2>(&t2),
|
||||
detail::assign_to_pointee<T3>(&t3),
|
||||
detail::assign_to_pointee<T4>(&t4),
|
||||
detail::assign_to_pointee<T5>(&t5),
|
||||
detail::assign_to_pointee<T6>(&t6));
|
||||
detail::assign_to_pointee<T6>(&t5),
|
||||
detail::assign_to_pointee<T5>(&t6));
|
||||
}
|
||||
|
||||
// Tie variables into a tuple
|
||||
|
@ -69,7 +69,7 @@ inline bool neq(const T1& lhs, const T2& rhs) {
|
||||
neq(lhs.get_tail(), rhs.get_tail());
|
||||
}
|
||||
template<>
|
||||
inline bool neq<null_type,null_type>(const null_type&, const null_type&) { return false; }
|
||||
inline bool neq<null_type,null_type>(const null_type&, const null_type&) { return true; }
|
||||
|
||||
template<class T1, class T2>
|
||||
inline bool lt(const T1& lhs, const T2& rhs) {
|
||||
|
@ -395,7 +395,6 @@ equality_test()
|
||||
tuple<int, char> t4(2, 'a');
|
||||
BOOST_TEST(t1 != t3);
|
||||
BOOST_TEST(t1 != t4);
|
||||
BOOST_TEST(!(t1 != t2));
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user