diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-04-12 00:14:17 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-04-20 08:24:33 +0200 |
commit | b4b3a0d40707f9ec126d7238b2974ac6ff7ee359 (patch) | |
tree | 54e2cbc51fc48842397f900dd40b78372c70d566 /animations | |
parent | 4d8a46b819fb65ff13e306ac2c1580f87974bb6d (diff) |
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 <vmiklos@collabora.com>
Diffstat (limited to 'animations')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
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; |