From b25f9d8301295cea1f865de8d7ab046244feee75 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 29 Aug 2014 09:34:23 +0200 Subject: [PATCH] fixed bug in last. --- arangod/Aql/ExecutionNode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangod/Aql/ExecutionNode.h b/arangod/Aql/ExecutionNode.h index 2f2ab37751..3642e1066a 100644 --- a/arangod/Aql/ExecutionNode.h +++ b/arangod/Aql/ExecutionNode.h @@ -903,7 +903,7 @@ namespace triagens { virtual ExecutionNode* clone () const { std::vector> 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); }