diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-14 08:54:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-14 13:21:49 +0100 |
commit | 1b61d0417bf46896ef1f1bd1e1a8209588fc157a (patch) | |
tree | 6c603d40a0a1e2c1c4a9e7dd8495ed528586b16b /compilerplugins/clang/unusedmethods.py | |
parent | f95afd856d087b5475d67d104a4aa7d85cf32413 (diff) |
loplugin:unusedmethods
Change-Id: I7c780be3e2740fd9b03c39ebe16935d61caf4f7e
Reviewed-on: https://gerrit.libreoffice.org/51257
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang/unusedmethods.py')
-rwxr-xr-x | compilerplugins/clang/unusedmethods.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compilerplugins/clang/unusedmethods.py b/compilerplugins/clang/unusedmethods.py index 1c080b64dd45..68f2fba6bed8 100755 --- a/compilerplugins/clang/unusedmethods.py +++ b/compilerplugins/clang/unusedmethods.py @@ -133,9 +133,6 @@ for d in definitionSet: # alone if the other one is in use. if d[1] == "begin() const" or d[1] == "begin()" or d[1] == "end()" or d[1] == "end() const": continue - # There is lots of macro magic going on in SRCDIR/include/sax/fshelper.hxx that should be using C++11 varargs templates - if d[1].startswith("sax_fastparser::FastSerializerHelper::"): - continue # used by Windows build if any(x in d[1] for x in ["DdeTopic::", "DdeData::", "DdeService::", "DdeTransaction::", "DdeConnection::", "DdeLink::", "DdeItem::", "DdeGetPutItem::"]): continue |