Index: src/ast/ast.h |
diff --git a/src/ast/ast.h b/src/ast/ast.h |
index c2ff617c482662d6acf80b475f45e121a6e4e0ba..31309b73b09afa5952a3d182c01ffdacfd7ff12c 100644 |
--- a/src/ast/ast.h |
+++ b/src/ast/ast.h |
@@ -2846,7 +2846,7 @@ class EmptyParentheses final : public Expression { |
// class SpecificVisitor : public AstVisitor<SpecificVisitor> { ... } |
template <class Subclass> |
-class AstVisitor BASE_EMBEDDED { |
Michael Starzinger
2016/08/16 12:11:44
nit: Can this be kept BASE_EMBEDDED now that we no
rmcilroy
2016/08/16 12:16:10
Done.
|
+class AstVisitor { |
public: |
void Visit(AstNode* node) { impl()->Visit(node); } |