drop unneeded && qualifier from query::result_merger::get()

This commit is contained in:
Gleb Natapov
2015-07-12 13:17:33 +03:00
committed by Tomasz Grabiec
parent 38cf77b16b
commit f3adc5b729

View File

@@ -25,7 +25,7 @@ public:
// FIXME: Eventually we should return a composite_query_result here
// which holds the vector of query results and which can be quickly turned
// into packet fragments by the transport layer without copying the data.
foreign_ptr<lw_shared_ptr<query::result>> get() && {
foreign_ptr<lw_shared_ptr<query::result>> get() {
auto merged = make_lw_shared<query::result>();
size_t total_size = 0;