提交 50289d3d 编写于 作者: C Chinmay Garde

Fix iOS builds: InlinedStructPtr is not copyable. Avoid the same while...

Fix iOS builds: InlinedStructPtr is not copyable. Avoid the same while iterating over request headers.
上级 fed101fe
......@@ -133,7 +133,7 @@ void URLLoaderImpl::Start(URLRequestPtr request,
req.HTTPMethod = @(request->method.data());
for (auto header : request->headers) {
for (const auto& header : request->headers) {
NSString *name = @(header->name.data());
NSString *value = @(header->value.data());
[req addValue:value forHTTPHeaderField:name];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册