1
0
Fork 0

whitespace removal

This commit is contained in:
jsteemann 2016-07-12 17:58:05 +02:00
parent 27534399f0
commit 522b23590b
1 changed files with 1 additions and 6 deletions

View File

@ -254,7 +254,6 @@ bool SkiplistLookupBuilder::next() {
return false;
}
SkiplistInLookupBuilder::SkiplistInLookupBuilder(
Transaction* trx,
std::vector<std::vector<arangodb::aql::AstNode const*>>& ops,
@ -529,7 +528,6 @@ TRI_doc_mptr_t* SkiplistIterator::next() {
return tmp->document()->document();
}
////////////////////////////////////////////////////////////////////////////////
/// @brief Checks if the interval is valid. It is declared invalid if
/// one border is nullptr or the right is lower than left.
@ -553,14 +551,12 @@ bool SkiplistIterator2::intervalValid(Node* left, Node* right) const {
return true;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief Reset the cursor
////////////////////////////////////////////////////////////////////////////////
void SkiplistIterator2::reset() {
// If _interals is empty at this point
// If _intervals is empty at this point
// the cursor does not contain any
// document at all. Reset is pointless
if (!_intervals.empty()) {
@ -686,7 +682,6 @@ void SkiplistIterator2::initNextInterval() {
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief create the skiplist index
////////////////////////////////////////////////////////////////////////////////