From d7e0247ed43091172c2cc3827399bb111416d617 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Wed, 12 Apr 2023 00:27:47 +0200 Subject: Run clang-tidy with misc-unused-using-decls on modules [s-t]* To remove unneeded using declarations. Via the simple script: for i in $(find $dirname -name "*cxx" -o -name "*hxx" ); do clang-tidy-12 --checks="-*,misc-unused-using-decls" "$i"; done Change-Id: I596299084471b2904548d23875866f1583b00b2a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150610 Tested-by: Jenkins Reviewed-by: Gabor Kelemen --- shell/source/win32/simplemail/smplmailmsg.cxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'shell/source') diff --git a/shell/source/win32/simplemail/smplmailmsg.cxx b/shell/source/win32/simplemail/smplmailmsg.cxx index 7a622b3fe0db..8cc7c3a46ab4 100644 --- a/shell/source/win32/simplemail/smplmailmsg.cxx +++ b/shell/source/win32/simplemail/smplmailmsg.cxx @@ -21,9 +21,7 @@ #include #include "smplmailmsg.hxx" -using com::sun::star::uno::RuntimeException; using com::sun::star::uno::Sequence; -using com::sun::star::lang::IllegalArgumentException; using namespace cppu; -- cgit