1
0
mirror of https://github.com/yhirose/cpp-peglib.git synced 2025-04-07 10:52:08 +00:00

Removed unused function

This commit is contained in:
yhirose 2018-05-28 21:06:38 -04:00
parent 0dfe7a22c1
commit bfa23401e5

View File

@ -2312,13 +2312,6 @@ private:
const std::vector<std::string> filters_; const std::vector<std::string> filters_;
}; };
template <typename T>
static std::shared_ptr<T> optimize_ast(
std::shared_ptr<T> ast,
const std::vector<std::string>& filters = {}) {
return AstOptimizer(true, filters).optimize(ast);
}
struct EmptyType {}; struct EmptyType {};
typedef AstBase<EmptyType> Ast; typedef AstBase<EmptyType> Ast;