forked from boostorg/fusion
Fixed bug in test/sequence/nest.hpp where some results were ignored
This commit is contained in:
@ -116,7 +116,7 @@ namespace test_detail
|
||||
bool operator()(Source const& source, Expected const& expected)
|
||||
{
|
||||
return
|
||||
run< can_copy<T> >(source, expected);
|
||||
run< can_copy<T> >(source, expected) &&
|
||||
run< can_convert_using<can_copy>::to<T> >(source, expected) &&
|
||||
run< can_construct_from_elements<T> >(source, expected);
|
||||
}
|
||||
|
Reference in New Issue
Block a user