Merge branch 'T1083-MG-limit-and-order-expand-one_v3' of github.com:memgraph/memgraph into T1083-MG-limit-and-order-expand-one_v3

This commit is contained in:
jeremy 2022-10-28 13:21:52 +02:00
commit 34fbaa0aee

View File

@ -73,7 +73,7 @@ std::array<std::vector<EdgeAccessor>, 2> GetEdgesFromVertex(const VertexAccessor
} }
} }
return std::array<std::vector<EdgeAccessor>, 2>{in_edges, out_edges}; return std::array<std::vector<EdgeAccessor>, 2>{std::move(in_edges), std::move(out_edges)};
} }
} // namespace memgraph::storage::v3 } // namespace memgraph::storage::v3