1
0
Fork 0

fix compile error

This commit is contained in:
Jan Steemann 2014-09-15 13:36:38 +02:00
parent b5688131f5
commit 6805bfb540
1 changed files with 2 additions and 2 deletions

View File

@ -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;