mirror of https://gitee.com/bigwinds/arangodb
fixed compile warning
This commit is contained in:
parent
768c3b9bbc
commit
b978133e1b
|
@ -542,7 +542,6 @@ int triagens::aql::useIndexRange (Optimizer* opt,
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
class sortToIndexNode : public WalkerWorker<ExecutionNode> {
|
class sortToIndexNode : public WalkerWorker<ExecutionNode> {
|
||||||
CalculationNode* _thisSortNodesCalculationNode;
|
|
||||||
RangesInfo* _ranges;
|
RangesInfo* _ranges;
|
||||||
ExecutionPlan* _plan;
|
ExecutionPlan* _plan;
|
||||||
std::vector<Variable const*> _vars;
|
std::vector<Variable const*> _vars;
|
||||||
|
@ -554,9 +553,7 @@ class sortToIndexNode : public WalkerWorker<ExecutionNode> {
|
||||||
sortToIndexNode (ExecutionPlan* plan,
|
sortToIndexNode (ExecutionPlan* plan,
|
||||||
std::vector<Variable const*>& vars,
|
std::vector<Variable const*>& vars,
|
||||||
Optimizer::PlanList& out)
|
Optimizer::PlanList& out)
|
||||||
:
|
: _plan(plan),
|
||||||
_thisSortNodesCalculationNode(nullptr),
|
|
||||||
_plan(plan),
|
|
||||||
_vars(vars),
|
_vars(vars),
|
||||||
_out(out),
|
_out(out),
|
||||||
_executionNodesFound(0) {
|
_executionNodesFound(0) {
|
||||||
|
|
Loading…
Reference in New Issue