summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/refcounting.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/refcounting.cxx')
-rw-r--r--compilerplugins/clang/refcounting.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/refcounting.cxx b/compilerplugins/clang/refcounting.cxx
index 05d7fe943b62..8091fb3ee0cd 100644
--- a/compilerplugins/clang/refcounting.cxx
+++ b/compilerplugins/clang/refcounting.cxx
@@ -44,7 +44,8 @@ class RefCounting:
public RecursiveASTVisitor<RefCounting>, public loplugin::Plugin
{
public:
- explicit RefCounting(InstantiationData const & data): Plugin(data) {}
+ explicit RefCounting(loplugin::InstantiationData const & data): Plugin(data)
+ {}
virtual void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); }