1
0
Fork 0

Merge branch 'devel' of github.com:arangodb/arangodb into devel

This commit is contained in:
Andreas Streichardt 2016-04-21 18:38:22 +02:00
commit 681e2b037b
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ class AssocMulti {
std::vector<Element*>* lookupWithElementByKeyContinue(
UserData* userData, Element const* element, size_t limit = 0) const {
auto result = std::make_unique<std::vector<Element*>>();
lookupWithElementByKeyContinue(userData, element, limit);
lookupWithElementByKeyContinue(userData, element, *result.get(), limit);
return result.release();
}