From c3ae91b405fa7ae21512a79794a8025fb0952b99 Mon Sep 17 00:00:00 2001 From: Andreas Streichardt Date: Tue, 3 Jan 2017 16:41:45 +0100 Subject: [PATCH] Remove unused variable --- arangod/Indexes/GeoIndex.cpp | 1 - arangod/Indexes/GeoIndex.h | 1 - 2 files changed, 2 deletions(-) diff --git a/arangod/Indexes/GeoIndex.cpp b/arangod/Indexes/GeoIndex.cpp index 87ea413754..6f4e11cb9b 100644 --- a/arangod/Indexes/GeoIndex.cpp +++ b/arangod/Indexes/GeoIndex.cpp @@ -46,7 +46,6 @@ GeoIndexIterator::GeoIndexIterator(LogicalCollection* collection, _cursor(nullptr), _coor(), _condition(cond), - _variable(var), _lat(0.0), _lon(0.0), _near(true), diff --git a/arangod/Indexes/GeoIndex.h b/arangod/Indexes/GeoIndex.h index b6fe2f5318..e91da6ce70 100644 --- a/arangod/Indexes/GeoIndex.h +++ b/arangod/Indexes/GeoIndex.h @@ -71,7 +71,6 @@ class GeoIndexIterator final : public IndexIterator { ::GeoCursor* _cursor; ::GeoCoordinate _coor; arangodb::aql::AstNode const* _condition; - arangodb::aql::Variable const* _variable; double _lat; double _lon; bool _near;