bump product version to 6.3.0.0.beta1
[LibreOffice.git] / compilerplugins / clang / store / lclstaticfix.hxx
blobe15420e6392700ec5e322c90c8f4508862b00175
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * Based on LLVM/Clang.
7 * This file is distributed under the University of Illinois Open Source
8 * License. See LICENSE.TXT for details.
12 #ifndef LCLSTATICFIX_H
13 #define LCLSTATICFIX_H
15 #include "plugin.hxx"
17 namespace loplugin
20 class LclStaticFix
21 : public loplugin::FilteringRewritePlugin< LclStaticFix >
23 public:
24 explicit LclStaticFix( CompilerInstance& compiler, Rewriter& rewriter );
25 virtual void run() override;
26 bool VisitFunctionDecl( const FunctionDecl* declaration );
29 } // namespace
31 #endif // POSTFIXINCREMENTFIX_H
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */