summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unnecessaryparen.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-07 11:50:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-07 11:50:47 +0100
commitb35bb38f18fd94aa67af944f76b820d59380b78b (patch)
treecc2c4aadda7f57abc174adfd3c2260428338d3d0 /compilerplugins/clang/unnecessaryparen.cxx
parent07b8711526972e120824d0fb913b01b1baf6a4cb (diff)
Clean away temporarily added using declarations
Change-Id: I26734c13515394162d88351a1cbe2b20abdac865
Diffstat (limited to 'compilerplugins/clang/unnecessaryparen.cxx')
-rw-r--r--compilerplugins/clang/unnecessaryparen.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/compilerplugins/clang/unnecessaryparen.cxx b/compilerplugins/clang/unnecessaryparen.cxx
index bb601fbc096c..43fc13be8eea 100644
--- a/compilerplugins/clang/unnecessaryparen.cxx
+++ b/compilerplugins/clang/unnecessaryparen.cxx
@@ -47,7 +47,8 @@ class UnnecessaryParen:
public RecursiveASTVisitor<UnnecessaryParen>, public loplugin::Plugin
{
public:
- explicit UnnecessaryParen(InstantiationData const & data): Plugin(data) {}
+ explicit UnnecessaryParen(loplugin::InstantiationData const & data):
+ Plugin(data) {}
virtual void run() override
{