Skip to content
Snippets Groups Projects
Unverified Commit dcbf2b88 authored by jimingquan's avatar jimingquan Committed by GitHub
Browse files

replace multimap with unordered_multimap (#894)

parent 5bd53981
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ folly::Future<Status> BFSShortestPathExecutor::execute() {
DataSet ds;
ds.colNames = node()->colNames();
std::multimap<Value, Value> interim;
std::unordered_multimap<Value, Value> interim;
for (; iter->valid(); iter->next()) {
auto edgeVal = iter->getEdge();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment