From 86514bfbb6b54d31bced14a529b43dc9046cac70 Mon Sep 17 00:00:00 2001 From: ado Date: Thu, 21 Jan 2021 02:09:51 +0100 Subject: [PATCH] replace tuple constructor with make_tuple in converter test --- test/test_converter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_converter.cpp b/test/test_converter.cpp index 8af8f74..b372f10 100644 --- a/test/test_converter.cpp +++ b/test/test_converter.cpp @@ -25,7 +25,7 @@ TEST_CASE("testing split") { ss::converter c; for (const auto& [s, expected, delim] : // clang-format off - {std::tuple{"a,b,c,d", std::vector{"a", "b", "c", "d"}, ","}, + {std::make_tuple{"a,b,c,d", std::vector{"a", "b", "c", "d"}, ","}, {"", {}, " "}, {" x x x x | x ", {" x x x x ", " x "}, "|"}, {"a::b::c::d", {"a", "b", "c", "d"}, "::"},