mirror of https://gitee.com/bigwinds/arangodb
fix compile error
This commit is contained in:
parent
b5688131f5
commit
6805bfb540
|
|
@ -996,7 +996,7 @@ void ExecutionPlan::checkLinkage () {
|
|||
/// @brief helper struct for findVarUsage
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
struct triagens::aql::VarUsageFinder : public WalkerWorker<ExecutionNode> {
|
||||
struct VarUsageFinder : public WalkerWorker<ExecutionNode> {
|
||||
|
||||
std::unordered_set<Variable const*> _usedLater;
|
||||
std::unordered_set<Variable const*> _valid;
|
||||
|
|
@ -1045,7 +1045,7 @@ struct triagens::aql::VarUsageFinder : public WalkerWorker<ExecutionNode> {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void ExecutionPlan::findVarUsage () {
|
||||
VarUsageFinder finder;
|
||||
::VarUsageFinder finder;
|
||||
root()->walk(&finder);
|
||||
_varSetBy = finder._varSetBy;
|
||||
_varUsageComputed = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue