diff options
Diffstat (limited to 'compilerplugins/clang/store/tutorial/tutorial1.hxx')
-rw-r--r-- | compilerplugins/clang/store/tutorial/tutorial1.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compilerplugins/clang/store/tutorial/tutorial1.hxx b/compilerplugins/clang/store/tutorial/tutorial1.hxx index 365d9259680c..59f115147780 100644 --- a/compilerplugins/clang/store/tutorial/tutorial1.hxx +++ b/compilerplugins/clang/store/tutorial/tutorial1.hxx @@ -20,9 +20,7 @@ namespace loplugin // The class implementing the plugin action. class Tutorial1 // Inherits from the Clang class that will allow examing the Clang AST tree (i.e. syntax tree). - : public RecursiveASTVisitor< Tutorial1 > - // And the base class for LO Clang plugins. - , public Plugin + : public FilteringPlugin< Tutorial1 > { public: // Ctor, nothing special. |