1
0
Fork 0

Merge branch 'aql2' of https://github.com/triAGENS/ArangoDB into aql2

This commit is contained in:
Jan Steemann 2014-08-29 10:59:33 +02:00
commit 6c3544cffb
1 changed files with 1 additions and 1 deletions

View File

@ -903,7 +903,7 @@ namespace triagens {
virtual ExecutionNode* clone () const {
std::vector<std::vector<RangeInfo*>> ranges;
for (auto i = 0; i < _ranges.size(); i++){
for (size_t i = 0; i < _ranges.size(); i++){
for (auto x: _ranges.at(i)){
ranges.at(i).push_back(x);
}