diff options
Diffstat (limited to 'compilerplugins/clang/salcall.cxx')
-rw-r--r-- | compilerplugins/clang/salcall.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/salcall.cxx b/compilerplugins/clang/salcall.cxx index 2a6160162527..0048b907f552 100644 --- a/compilerplugins/clang/salcall.cxx +++ b/compilerplugins/clang/salcall.cxx @@ -51,11 +51,11 @@ CXXMethodDecl const* getTemplateInstantiationPattern(CXXMethodDecl const* decl) return p == nullptr ? decl : cast<CXXMethodDecl>(p); } -class SalCall final : public RecursiveASTVisitor<SalCall>, public loplugin::RewritePlugin +class SalCall final : public loplugin::FilteringRewritePlugin<SalCall> { public: explicit SalCall(loplugin::InstantiationData const& data) - : RewritePlugin(data) + : FilteringRewritePlugin(data) { } |