filter out AST in more plugins

I seem to have missed quite a few in

    commit 9f4d23c151
    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>
This commit is contained in:
Noel Grandin
2018-08-23 14:35:15 +02:00
parent e78a6c4231
commit 1fd27a7931
52 changed files with 103 additions and 105 deletions

View File

@@ -23,11 +23,11 @@
namespace
{
class PointerBool : public RecursiveASTVisitor<PointerBool>, public loplugin::Plugin
class PointerBool : public loplugin::FilteringPlugin<PointerBool>
{
public:
explicit PointerBool(loplugin::InstantiationData const& data)
: Plugin(data)
: FilteringPlugin(data)
{
}