summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/constparams.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/constparams.cxx
parent07b8711526972e120824d0fb913b01b1baf6a4cb (diff)
Clean away temporarily added using declarations
Change-Id: I26734c13515394162d88351a1cbe2b20abdac865
Diffstat (limited to 'compilerplugins/clang/constparams.cxx')
-rw-r--r--compilerplugins/clang/constparams.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/constparams.cxx b/compilerplugins/clang/constparams.cxx
index 603e9fb4b5f6..ef97d671f801 100644
--- a/compilerplugins/clang/constparams.cxx
+++ b/compilerplugins/clang/constparams.cxx
@@ -35,12 +35,12 @@ class ConstParams:
public loplugin::FunctionAddress<ConstParams>
{
public:
- explicit ConstParams(InstantiationData const & data): loplugin::FunctionAddress<ConstParams>(data) {}
+ explicit ConstParams(loplugin::InstantiationData const & data): loplugin::FunctionAddress<ConstParams>(data) {}
virtual void run() override {
std::string fn( compiler.getSourceManager().getFileEntryForID(
compiler.getSourceManager().getMainFileID())->getName() );
- normalizeDotDotInFilePath(fn);
+ loplugin::normalizeDotDotInFilePath(fn);
if (startswith(fn, SRCDIR "/sal/")
|| fn == SRCDIR "/jurt/source/pipe/staticsalhack.cxx"
|| startswith(fn, SRCDIR "/bridges/")