Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jenny Ryan
ouinet
Commits
b6beaea3
Commit
b6beaea3
authored
Dec 08, 2020
by
Ivan Vilata-i-Balaguer
Browse files
Avoid copying head in local variable.
parent
5ced3341
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cache/http_store.cpp
View file @
b6beaea3
...
...
@@ -441,7 +441,7 @@ public:
}
head
.
set
(
http
::
field
::
transfer_encoding
,
"chunked"
);
return
head
;
return
std
::
move
(
head
)
;
}
void
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment