Merge pull request #148 from vtnerd/bugfix/test_nest

Fixed bug in test/sequence/nest.hpp where some results were ignored
This commit is contained in:
Joel de Guzman
2017-07-26 08:01:19 +08:00
committed by GitHub

View File

@ -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);
}