From 72407472b6d00a1972d468774e358b690241f359 Mon Sep 17 00:00:00 2001 From: Dax Kelson Date: Sun, 8 May 2016 23:25:02 -0600 Subject: [PATCH] =?UTF-8?q?Fix=20ambiguous=20reference=20to=20=E2=80=98cre?= =?UTF-8?q?dentials=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allows compilation on Linux with GCC v5.3 --- Release/tests/functional/http/client/proxy_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Release/tests/functional/http/client/proxy_tests.cpp b/Release/tests/functional/http/client/proxy_tests.cpp index d309c957e2..2d7ca22b27 100644 --- a/Release/tests/functional/http/client/proxy_tests.cpp +++ b/Release/tests/functional/http/client/proxy_tests.cpp @@ -97,7 +97,7 @@ TEST_FIXTURE(uri_address, no_proxy_options_on_winrt) web_proxy proxy(u); VERIFY_IS_TRUE(proxy.is_specified()); VERIFY_ARE_EQUAL(u, proxy.address()); - credentials cred(U("artur"), U("fred")); // relax, this is not my real password + web::credentials cred(U("artur"), U("fred")); // relax, this is not my real password proxy.set_credentials(cred); http_client_config config;