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/staticmethods.cxx | |
parent | 07b8711526972e120824d0fb913b01b1baf6a4cb (diff) |
Clean away temporarily added using declarations
Change-Id: I26734c13515394162d88351a1cbe2b20abdac865
Diffstat (limited to 'compilerplugins/clang/staticmethods.cxx')
-rw-r--r-- | compilerplugins/clang/staticmethods.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/staticmethods.cxx b/compilerplugins/clang/staticmethods.cxx index cbd395845808..7d5b23a7ba04 100644 --- a/compilerplugins/clang/staticmethods.cxx +++ b/compilerplugins/clang/staticmethods.cxx @@ -24,7 +24,7 @@ class StaticMethods: private: bool bVisitedThis; public: - explicit StaticMethods(InstantiationData const & data): Plugin(data), bVisitedThis(false) {} + explicit StaticMethods(loplugin::InstantiationData const & data): Plugin(data), bVisitedThis(false) {} void run() override { TraverseDecl(compiler.getASTContext().getTranslationUnitDecl()); } |