bump product version to 6.3.0.0.beta1
[LibreOffice.git] / compilerplugins / clang / store / bodynotinblock.hxx
blobe5f0dc49f428bf3902f9d00a9c76f538a36ee8e2
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 BODYNOTINBLOCK_H
13 #define BODYNOTINBLOCK_H
15 #include "plugin.hxx"
17 namespace loplugin
20 class BodyNotInBlock
21 : public loplugin::FilteringPlugin<BodyNotInBlock>
23 public:
24 explicit BodyNotInBlock( const InstantiationData& data );
25 virtual void run() override;
26 bool VisitIfStmt( const IfStmt* stmt );
27 bool VisitWhileStmt( const WhileStmt* stmt );
28 bool VisitForStmt( const ForStmt* stmt );
29 bool VisitCXXForRangeStmt( const CXXForRangeStmt* stmt );
30 private:
31 void checkBody( const Stmt* body, SourceLocation stmtLocation, int stmtType, bool dontGoUp = false );
34 } // namespace
36 #endif // BODYNOTINBLOCK_H
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */