mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
Don't pessimize-move
This commit is contained in:
committed by
Damian Jarek
parent
85adb6ca2f
commit
363d5c36d3
@ -9,6 +9,7 @@ Version 256:
|
|||||||
* `allocator_traits::construct` is used for user-defined types
|
* `allocator_traits::construct` is used for user-defined types
|
||||||
* Add 1-element specialization for `buffers_cat`
|
* Add 1-element specialization for `buffers_cat`
|
||||||
* Fix `buffers_cat` iterator tests
|
* Fix `buffers_cat` iterator tests
|
||||||
|
* Don't pessimize-move
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -489,7 +489,7 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Send the response
|
// Send the response
|
||||||
handle_request(*doc_root_, std::move(parser_->release()), queue_);
|
handle_request(*doc_root_, parser_->release(), queue_);
|
||||||
|
|
||||||
// If we aren't at the queue limit, try to pipeline another request
|
// If we aren't at the queue limit, try to pipeline another request
|
||||||
if(! queue_.is_full())
|
if(! queue_.is_full())
|
||||||
|
Reference in New Issue
Block a user