[flang] Remove debugging

Original-commit: flang-compiler/f18@1db626f838
Reviewed-on: https://github.com/flang-compiler/f18/pull/449
Tree-same-pre-rewrite: false
This commit is contained in:
peter klausler 2019-05-07 16:26:47 -07:00
parent bb83471e96
commit 04d85f1754
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ static CS GatherReferencesFromExpression(const parser::Expr &expression) {
explicit CollectSymbols(int) {}
void Handle(const Symbol *symbol) { result().push_back(symbol); }
};
return evaluate::Visitor<GRFECollectSymbols>{0}.Traverse(
return evaluate::Visitor<CollectSymbols>{0}.Traverse(
expression.typedExpr->v);
} else {
GatherSymbols gatherSymbols;