summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-08 19:32:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-09 13:17:03 +0100
commit959ecc99634d9e52db33d0032744547fead3bdec (patch)
tree799cd0653afa1af4b4f3ab7950879e1736765607 /compilerplugins
parent907423a6ec5c2170dbf2ca445c0a1285e9a6adfc (diff)
No more issues with these source files
...after a31267be1bb42e8a5f80a3b660bbf969eeb5b647 "Fix isSalCallFunction so it also works on Windows" Change-Id: Ic770230f2dd6183f5937801f27e929ebfd39bb4a Reviewed-on: https://gerrit.libreoffice.org/46111 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/salcall.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/compilerplugins/clang/salcall.cxx b/compilerplugins/clang/salcall.cxx
index 8bdac1256759..6cfe7adc8cbd 100644
--- a/compilerplugins/clang/salcall.cxx
+++ b/compilerplugins/clang/salcall.cxx
@@ -12,7 +12,6 @@
#include <algorithm>
#include <set>
-#include <string>
#include <utility>
#include <vector>
@@ -60,16 +59,6 @@ public:
virtual void run() override
{
- std::string fn(compiler.getSourceManager()
- .getFileEntryForID(compiler.getSourceManager().getMainFileID())
- ->getName());
- loplugin::normalizeDotDotInFilePath(fn);
- // ignore this one. I can't get accurate source code from getCharacterData() for it.
- if (fn == SRCDIR "/sal/rtl/string.cxx")
- return;
- // clang returns completely bogus source range for something in this file
- if (fn == SRCDIR "/sd/source/ui/unoidl/unomodel.cxx")
- return;
m_phase = PluginPhase::FindAddressOf;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
m_phase = PluginPhase::Warning;