From 82f24e0f7391dd70f7cbf5499b231c1f0cfb4e15 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Fri, 11 Mar 2016 01:01:12 +0900 Subject: [PATCH] Tweak std::tuple test for GCC 4.4 due to https://gcc.gnu.org/PR41530 . --- test/sequence/std_tuple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequence/std_tuple.cpp b/test/sequence/std_tuple.cpp index 2495fa55..257fd850 100644 --- a/test/sequence/std_tuple.cpp +++ b/test/sequence/std_tuple.cpp @@ -27,7 +27,7 @@ main() { // conversion vector to std tuple - std::tuple t = convert(make_vector(123, "Hola!!!")); + std::tuple t = convert(make_vector(123, std::string("Hola!!!"))); BOOST_TEST(std::get<0>(t) == 123); BOOST_TEST(std::get<1>(t) == "Hola!!!"); }