diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-23 14:35:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-23 16:34:48 +0200 |
commit | 1fd27a79318b2a762e3ae1590dde783ee656234b (patch) | |
tree | 081ffc07e67a32c173ec4322bb87f8f2ede278cb /compilerplugins/clang/unusedenumconstants.cxx | |
parent | e78a6c4231cfb33643b45442b786e1e31b2781a8 (diff) |
filter out AST in more plugins
I seem to have missed quite a few in
commit 9f4d23c15115d64febd6bf01f870cc157badd350
filter out some of the AST in the plugins
This nets me another 14% improvement
Change-Id: I39b980b49ced560f768045dbedd3ddfef29306c1
Reviewed-on: https://gerrit.libreoffice.org/59501
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang/unusedenumconstants.cxx')
-rw-r--r-- | compilerplugins/clang/unusedenumconstants.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/unusedenumconstants.cxx b/compilerplugins/clang/unusedenumconstants.cxx index 8a0aaace2669..b106d308fdb5 100644 --- a/compilerplugins/clang/unusedenumconstants.cxx +++ b/compilerplugins/clang/unusedenumconstants.cxx @@ -59,10 +59,10 @@ static std::set<MyFieldInfo> readSet; class UnusedEnumConstants: - public RecursiveASTVisitor<UnusedEnumConstants>, public loplugin::Plugin + public loplugin::FilteringPlugin<UnusedEnumConstants> { public: - explicit UnusedEnumConstants(loplugin::InstantiationData const & data): Plugin(data) {} + explicit UnusedEnumConstants(loplugin::InstantiationData const & data): FilteringPlugin(data) {} virtual void run() override { |