small fix: const Type& to be consistent (#2061)

This commit is contained in:
JinmingHu 2021-04-07 12:22:53 +08:00 committed by GitHub
parent 4db9a563e7
commit aa0a388e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ namespace Azure { namespace Storage { namespace Test {
return connectionString;
}
std::string AppendQueryParameters(Azure::Core::Url const& url, std::string const& queryParameters)
std::string AppendQueryParameters(const Azure::Core::Url& url, const std::string& queryParameters)
{
std::string absoluteUrl = url.GetAbsoluteUrl();
if (queryParameters.empty())

View File

@ -44,8 +44,8 @@ namespace Azure { namespace Storage { namespace Test {
}
std::string AppendQueryParameters(
Azure::Core::Url const& url,
std::string const& queryParameters);
const Azure::Core::Url& url,
const std::string& queryParameters);
const static Azure::ETag DummyETag("0x8D83B58BDF51D75");
const static Azure::ETag DummyETag2("0x8D812645BFB0CDE");