diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-11-26 09:18:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-11-26 11:28:07 +0100 |
commit | 27005a72fdac26977498b4efae12f54b6feb3f9a (patch) | |
tree | 87aeb019dd1dcb16dd67ab9444dfc820a6d9a3b8 /compilerplugins | |
parent | 648758906e2d4a7a953d4eda27e95bc9478d336a (diff) |
loplugin:indentation no longer needs to blacklist binaryurp/source/bridge.cxx
...since bfaf25f59352eb81c7f53c741995a82021f4b0ff "Silence
-Werror,-Wunused-variable (clang-cl)" taught it about leading [[maybe_unused]].
Change-Id: I0d3baf66623c50cfb35d3923273fb1129f66213f
Reviewed-on: https://gerrit.libreoffice.org/83728
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/indentation.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compilerplugins/clang/indentation.cxx b/compilerplugins/clang/indentation.cxx index 9621ef549bbe..088de1e702d6 100644 --- a/compilerplugins/clang/indentation.cxx +++ b/compilerplugins/clang/indentation.cxx @@ -47,9 +47,6 @@ public: // looks like lex/yacc output if (fn == SRCDIR "/hwpfilter/source/grammar.cxx") return false; - // TODO need to learn to handle attributes like "[[maybe_unused]]" - if (fn == SRCDIR "/binaryurp/source/bridge.cxx") - return false; // the QEMIT macros if (loplugin::hasPathnamePrefix(fn, SRCDIR "/vcl/qt5/") || loplugin::isSamePathname(fn, SRCDIR "/vcl/unx/gtk3_kde5/kde5_filepicker_ipc.cxx")) |