mirror of
https://github.com/boostorg/fusion.git
synced 2026-02-03 22:05:29 +01:00
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