1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
7 * This file is distributed under the University of Illinois Open Source
8 * License. See LICENSE.TXT for details.
19 class RemoveForwardStringDecl
20 : public loplugin::FilteringRewritePlugin
< RemoveForwardStringDecl
>
23 explicit RemoveForwardStringDecl( CompilerInstance
& compiler
, Rewriter
& rewriter
);
24 virtual void run() override
;
25 bool VisitNamespaceDecl( const NamespaceDecl
* declaration
);
27 bool tryRemoveStringForwardDecl( const Decl
* decl
);
32 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */