From b4b3a0d40707f9ec126d7238b2974ac6ff7ee359 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Wed, 12 Apr 2023 00:14:17 +0200 Subject: Run clang-tidy with misc-unused-using-decls on modules [a-c]* 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: I95871cc0ae6f22a9684bae9d14ef0475aea17abb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150608 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- animations/source/animcore/animcore.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'animations') diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index 8963fa9f39c6..09a2e793b2c0 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -65,8 +65,6 @@ namespace com::sun::star::uno { class XComponentContext; } namespace com::sun::star::beans { struct NamedValue; } -using ::osl::Mutex; -using ::osl::Guard; using ::comphelper::OInterfaceContainerHelper4; using ::comphelper::OInterfaceIteratorHelper4; using ::com::sun::star::uno::Any; @@ -74,7 +72,6 @@ using ::com::sun::star::uno::UNO_QUERY; using ::com::sun::star::uno::XInterface; using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::Reference; -using ::com::sun::star::uno::WeakReference; using ::com::sun::star::uno::XComponentContext; using ::com::sun::star::uno::Exception; using ::com::sun::star::uno::XWeak; -- cgit