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 /chart2/source/view/main/ExplicitValueProvider.cxx | |
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 'chart2/source/view/main/ExplicitValueProvider.cxx')
-rw-r--r-- | chart2/source/view/main/ExplicitValueProvider.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/chart2/source/view/main/ExplicitValueProvider.cxx b/chart2/source/view/main/ExplicitValueProvider.cxx index b768e47b5be0..52f259d341c9 100644 --- a/chart2/source/view/main/ExplicitValueProvider.cxx +++ b/chart2/source/view/main/ExplicitValueProvider.cxx @@ -35,8 +35,6 @@ namespace chart using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; using ::com::sun::star::uno::Reference; -using ::com::sun::star::uno::Sequence; -using ::com::sun::star::uno::Any; namespace { |