From b24dfd635bf841cef704da66b5ce7431749ab08e Mon Sep 17 00:00:00 2001 From: Lee Clagett Date: Tue, 25 Jul 2017 15:29:57 -0400 Subject: [PATCH] Fixed bug in test/sequence/nest.hpp where some results were ignored --- test/sequence/nest.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequence/nest.hpp b/test/sequence/nest.hpp index 9743b1d4..76f3b436 100644 --- a/test/sequence/nest.hpp +++ b/test/sequence/nest.hpp @@ -116,7 +116,7 @@ namespace test_detail bool operator()(Source const& source, Expected const& expected) { return - run< can_copy >(source, expected); + run< can_copy >(source, expected) && run< can_convert_using::to >(source, expected) && run< can_construct_from_elements >(source, expected); }