Fix for outdated libstdcxx

This commit is contained in:
Gunnar Beutner 2017-12-19 17:03:53 +01:00
parent b63caaa756
commit 88af57e2ec
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ BOOST_AUTO_TEST_CASE(get_and_set)
std::vector<String> v1 { "hip", "hip", "hurra" };
std::vector<String> v2 { "äü^ä+#ül-" };
std::vector<String> v3 { "1", "2" };
m.emplace("shout", v1);
m.emplace("sonderzeichen", v2);
m.insert(std::make_pair("shout", v1));
m.insert(std::make_pair("sonderzeichen", v2));
url->SetQuery(m);
url->SetQueryElements("count", v3);
url->AddQueryElement("count", "3");