diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-11-07 11:50:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-11-07 11:50:47 +0100 |
commit | b35bb38f18fd94aa67af944f76b820d59380b78b (patch) | |
tree | cc2c4aadda7f57abc174adfd3c2260428338d3d0 /compilerplugins/clang/rendercontext.cxx | |
parent | 07b8711526972e120824d0fb913b01b1baf6a4cb (diff) |
Clean away temporarily added using declarations
Change-Id: I26734c13515394162d88351a1cbe2b20abdac865
Diffstat (limited to 'compilerplugins/clang/rendercontext.cxx')
-rw-r--r-- | compilerplugins/clang/rendercontext.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/rendercontext.cxx b/compilerplugins/clang/rendercontext.cxx index 2ea4a0c3380b..c0f3acf4f3cc 100644 --- a/compilerplugins/clang/rendercontext.cxx +++ b/compilerplugins/clang/rendercontext.cxx @@ -23,7 +23,8 @@ class RenderContext: public RecursiveASTVisitor<RenderContext>, public loplugin::Plugin { public: - explicit RenderContext(InstantiationData const & data): Plugin(data) {} + explicit RenderContext(loplugin::InstantiationData const & data): + Plugin(data) {} virtual void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); |