1
0
Fork 0

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

This commit is contained in:
Kaveh Vahedipour 2017-04-24 11:51:45 +02:00
commit a464347911
1 changed files with 2 additions and 2 deletions

View File

@ -1430,9 +1430,9 @@ arangodb::aql::AstNode* MMFilesSkiplistIndex::specializeCondition(
}
std::sort(nodes.begin(), nodes.end(),
[](arangodb::aql::AstNode const* lhs,
[this](arangodb::aql::AstNode const* lhs,
arangodb::aql::AstNode const* rhs) -> bool {
return Index::sortWeight(lhs) < Index::sortWeight(rhs);
return this->sortWeight(lhs) < this->sortWeight(rhs);
});
lastContainsEquality = containsEquality;